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 326b210 commit a58283cCopy full SHA for a58283c
src/test/java/io/github/marioluan/algorithms/sorting/QuiSelectTest.java renamed to src/test/java/io/github/marioluan/algorithms/sorting/QuickSelectTest.java
@@ -17,7 +17,7 @@
17
18
@SuppressWarnings("rawtypes")
19
@RunWith(Spectrum.class)
20
-public class QuiSelectTest {
+public class QuickSelectTest {
21
22
private static final Random RANDOM = new Random();
23
private Comparable[] array = null;
@@ -26,7 +26,7 @@ public class QuiSelectTest {
26
private int k = -1;
27
28
{
29
- describe("MergeSortRecursive", () -> {
+ describe("QuickSelect", () -> {
30
describe(".select", () -> {
31
32
describe("when array is small", () -> {
0 commit comments