We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Point::equals
KDTree
1 parent 5703be5 commit bbef89cCopy full SHA for bbef89c
src/main/java/com/thealgorithms/datastructures/trees/KDTree.java
@@ -75,7 +75,6 @@ public int getDimension() {
75
@Override
76
public boolean equals(Object obj) {
77
if (obj instanceof Point other) {
78
- if (other.getDimension() != this.getDimension()) return false;
79
return Arrays.equals(other.coordinates, this.coordinates);
80
}
81
return false;
0 commit comments