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

View File

@@ -1,9 +1,15 @@
package Sorting;
/**
* This class contains the main method and presents an interface for the user to
* compare sorting algorithm efficiencies. The user will be able to generate files
* of random numbers, and to select a set of algorithms to test on a file of random
* numbers.
*/
public class AlgorithmTester{
public static void main(String[] args) {
//This is where you will run the program to test your sorting algorithms.
}
}