feat: speed violence and momentumn are happening

This commit is contained in:
mpaulson 2022-07-19 20:11:49 -06:00
parent b6bc2a63b1
commit 44bdb7177f
15 changed files with 248 additions and 18 deletions

View file

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