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.
2 parents 545b67d + 3f6db56 commit a8d1c72Copy full SHA for a8d1c72
Interview Prep/section18_Tries/HeapGeneric.java
@@ -7,7 +7,7 @@ public class HeapGeneric<T extends Comparable<T>> {
7
ArrayList<T> data;
8
boolean isMin;
9
10
- HeapGeneric() {
+ public HeapGeneric() {
11
this(false);
12
}
13
0 commit comments