Answer: Assuming this is in the java language.. the equals() would be
Step-by-step explanation:
public boolean equals(Object o){
if(o == this){
return true;
}
if (!(o instanceof Ship)) {
return false;
}
Ship s = (Ship) o;
return s.x == this.x && s.y == this.y && s.speed == this.speed;
}