Adding stubs for class files to student project

This commit is contained in:
2020-05-28 14:06:00 -05:00
parent bb9533f045
commit d1d6557bef
3 changed files with 13 additions and 1 deletions

7
Sorting/Sorter.java Normal file
View File

@@ -0,0 +1,7 @@
package Sorting;
abstract class Sorter {
//This is an abstract class
//In this class you will write an abstract sort() method
//the method will be implemented by subclasses
}