We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
0 parents commit 2097a10Copy full SHA for 2097a10
insertionSort.js
@@ -0,0 +1,6 @@
1
+function insertionSort(array) {
2
+ return array;
3
+}
4
+
5
+const numbers = [8, 5, 6, 9, 3, 1, 4, 2, 7, 10];
6
+insertionSort(numbers);
0 commit comments