much implementation, ready for first test

This commit is contained in:
2020-05-30 18:46:10 -05:00
parent 741d29f148
commit c680ec7671
8 changed files with 159 additions and 11 deletions

14
Sorting/QuickSorter.java Normal file
View File

@@ -0,0 +1,14 @@
package Sorting;
public class QuickSorter extends Sorter{
public QuickSorter(String filename){
super("quick", filename);
System.out.println("This is stub code, to be removed");
}
void sort(){
}
}