1
0

Initial commit

This commit is contained in:
2025-12-16 20:39:11 +00:00
commit 8ae9352aa1
70 changed files with 3898 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import quick_sort from "@code/QuickSort";
test("quick-sort", function () {
const arr = [9, 3, 7, 4, 69, 420, 42];
debugger;
quick_sort(arr);
expect(arr).toEqual([3, 4, 7, 9, 42, 69, 420]);
});