Skip to content

Commit d57da50

Browse files
williamfisetclaude
andcommitted
Remove LazyRangeAdder and its test
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 0e55a9b commit d57da50

File tree

5 files changed

+0
-169
lines changed

5 files changed

+0
-169
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,6 @@ $ java -cp classes com.williamfiset.algorithms.search.BinarySearch
264264
- [Sliding Window Minimum/Maximum](src/main/java/com/williamfiset/algorithms/other/SlidingWindowMaximum.java) **- O(1)**
265265
- [Square Root Decomposition](src/main/java/com/williamfiset/algorithms/other/SquareRootDecomposition.java) **- O(1) point updates, O(√n) range queries**
266266
- [Unique set combinations](src/main/java/com/williamfiset/algorithms/other/UniqueCombinations.java) **- O(n choose r)**
267-
- [Lazy Range Adder](src/main/java/com/williamfiset/algorithms/other/LazyRangeAdder.java) **- O(1) range updates, O(n) to finalize all updates**
268267

269268
# Search algorithms
270269

src/main/java/com/williamfiset/algorithms/other/BUILD

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,6 @@ java_binary(
2121
runtime_deps = [":other"],
2222
)
2323

24-
# bazel run //src/main/java/com/williamfiset/algorithms/other:LazyRangeAdder
25-
java_binary(
26-
name = "LazyRangeAdder",
27-
main_class = "com.williamfiset.algorithms.other.LazyRangeAdder",
28-
runtime_deps = [":other"],
29-
)
30-
3124
# bazel run //src/main/java/com/williamfiset/algorithms/other:Permutations
3225
java_binary(
3326
name = "Permutations",

src/main/java/com/williamfiset/algorithms/other/LazyRangeAdder.java

Lines changed: 0 additions & 71 deletions
This file was deleted.

src/test/java/com/williamfiset/algorithms/other/BUILD

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,6 @@ TEST_DEPS = [
1717
"@maven//:com_google_truth_truth",
1818
] + JUNIT5_DEPS
1919

20-
java_test(
21-
name = "LazyRangeAdderTest",
22-
srcs = ["LazyRangeAdderTest.java"],
23-
main_class = "org.junit.platform.console.ConsoleLauncher",
24-
use_testrunner = False,
25-
args = ["--select-class=com.williamfiset.algorithms.other.LazyRangeAdderTest"],
26-
runtime_deps = JUNIT5_RUNTIME_DEPS,
27-
deps = TEST_DEPS,
28-
)
29-
3020
java_test(
3121
name = "SlidingWindowMaximumTest",
3222
srcs = ["SlidingWindowMaximumTest.java"],

src/test/java/com/williamfiset/algorithms/other/LazyRangeAdderTest.java

Lines changed: 0 additions & 80 deletions
This file was deleted.

0 commit comments

Comments
 (0)