Setting up modules for student

This commit is contained in:
2020-05-29 09:33:31 -05:00
parent d1d6557bef
commit 867b906f0c
6 changed files with 50 additions and 4 deletions

10
Sorting/SortResult.java Normal file
View File

@@ -0,0 +1,10 @@
package Sorting;
/**
* This is a class to hold the efficiencty results of a sorter. We will use this
* because we can only have one return value from a method, but want to get more
* than one piece of data from each sorter.
*/
public class SortResult {
}