We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a65714c + 6eea66c commit 9f7292dCopy full SHA for 9f7292d
Sorting/QuickSort.php
@@ -10,7 +10,7 @@
10
function quickSort(array $input)
11
{
12
// Return nothing if input is empty
13
- if (!empty($input)) {
+ if (empty($input)) {
14
return [];
15
}
16
0 commit comments