Advertisement
naorzr

Untitled

Feb 2nd, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.24 KB | None | 0 0
  1.  
  2.         for (IntNode i = _head; i != null; i = i.getNext()) // Goes through the current set.
  3.         {
  4.             if (i.getValue() != otherSet.getValue())
  5.                     return false;
  6.             otherSet = otherSet.getNext();
  7.         }
  8.         return true,
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement