update 3637 mod solution
Some checks failed
Binary Search Test / test (push) Failing after 7s

This commit is contained in:
2026-02-17 13:17:09 +03:00
parent 6d928e53f2
commit 358d09e307
2 changed files with 15 additions and 24 deletions

View File

@@ -28,16 +28,6 @@ public class IntList {
return idx;
}
public IntList getReversed() {
IntList reverse = new IntList(new int[idx]);
for (int i = idx - 1; i >= 0; i--) {
reverse.put(list[i]);
}
return reverse;
}
public int get(int index) {
return list[index];
}