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.
1 parent 0790365 commit 6ee5bcaCopy full SHA for 6ee5bca
src/sorting/quicksort-declarative.js
@@ -29,7 +29,7 @@
29
const [x, ...rest] = arr;
30
31
return [
32
- ...quickSort(rest.filter(v => cmp(v, x) < 0),
+ ...quickSort(rest.filter(v => cmp(v, x) < 0)),
33
x,
34
...quickSort(rest.filter(v => cmp(v, x) >= 0))
35
]
0 commit comments