Advertisement
Guest User

Untitled

a guest
Feb 24th, 2020
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. public boolean equals(Object obj) {
  2. return this == obj ||
  3. obj instanceof Tiles &&
  4. Arrays.equals(tiles, ((Tiles)obj).tiles);
  5. }
  6.  
  7. public int hashCode() {
  8. return Arrays.hashCode(tiles);
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement