File tree 2 files changed +7
-7
lines changed
main/java/com/thealgorithms/sorts
test/java/com/thealgorithms/sorts
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 22
22
* </ol>
23
23
*/
24
24
public class FlashSort implements SortAlgorithm {
25
- private double classificationRatio = 0.45 ;;
25
+ private double classificationRatio = 0.45 ;
26
26
27
27
public FlashSort () {
28
28
}
Original file line number Diff line number Diff line change 3
3
import static org .junit .jupiter .api .Assertions .assertEquals ;
4
4
import static org .junit .jupiter .api .Assertions .assertThrows ;
5
5
6
+ import java .lang .reflect .Method ;
7
+ import java .util .ArrayList ;
8
+ import java .util .Collection ;
9
+ import java .util .List ;
6
10
import org .junit .jupiter .api .DynamicTest ;
7
11
import org .junit .jupiter .api .Test ;
8
12
import org .junit .jupiter .api .TestFactory ;
9
13
import org .junit .jupiter .api .function .Executable ;
10
14
import org .junit .jupiter .params .ParameterizedTest ;
11
15
import org .junit .jupiter .params .provider .ValueSource ;
12
16
13
- import java .lang .reflect .Method ;
14
- import java .util .ArrayList ;
15
- import java .util .Collection ;
16
- import java .util .List ;
17
-
18
17
public class FlashSortTest extends SortingAlgorithmTest {
19
18
private final FlashSort flashSort = new FlashSort ();
20
19
@@ -87,5 +86,6 @@ private List<TestMethod> getTestMethodsFromSuperClass() {
87
86
return testMethods ;
88
87
}
89
88
90
- record TestMethod (Executable executable , String name ) {}
89
+ record TestMethod (Executable executable , String name ) {
90
+ }
91
91
}
You can’t perform that action at this time.
0 commit comments