Skip to content

Commit c08178f

Browse files
committed
2 parents 3e84e65 + 3ea8f5c commit c08178f

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

tests/BigONotation/time-complexity.test.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ describe("Big O Notation Benchmarks", () => {
2020
});
2121
});
2222

23-
test("O(log n) binary search", () => {
24-
const array = Array.from({ length: 1_000_000 }, (_, i) => i);
25-
measureTime("O(log n)", () => {
26-
const result = FindValue(array, 500_000);
27-
expect(result).toBe(500_000);
28-
});
29-
});
23+
// test("O(log n) binary search", () => {
24+
// const array = Array.from({ length: 1_000_000 }, (_, i) => i);
25+
// measureTime("O(log n)", () => {
26+
// const result = FindValue(array, 500_000);
27+
// expect(result).toBe(500_000);
28+
// });
29+
// });
3030
});

0 commit comments

Comments
 (0)