dumb implementations of each so far

This commit is contained in:
2023-06-28 20:04:09 -07:00
parent 0b2c71d97d
commit 0763ca0cd4
6 changed files with 155 additions and 1 deletions

View File

@@ -5,7 +5,7 @@ function bubble_sort(arr: number[]): void {
const t = arr[j+1];
arr[j+1] = arr[j];
arr[j] = t;
}
}
}