We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bda656e commit f40dea9Copy full SHA for f40dea9
2 files changed
src/main/java/com/thealgorithms/sorts/SleepSort.java
@@ -43,4 +43,4 @@ public static int[] sort(int[] array) {
43
44
return result;
45
}
46
-}
+}
src/test/java/com/thealgorithms/sorts/SleepSortTest.java
@@ -29,4 +29,4 @@ void testSingleElement() {
29
int[] result = SleepSort.sort(input);
30
assertArrayEquals(expected, result);
31
32
0 commit comments