Correct me if I’m wrong, but I added the following code to my Coord class.
public boolean equals(Coord c){
if(c.equals(this)) return true;
return false;
}
And I just checked what coords.contains© returns and it came up false, every time; even after implementing equals().