File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -9,10 +9,10 @@ public class Program
9
9
* Edit these variables to set up!
10
10
*/
11
11
const string sortingAlgorithm = CallSpecifiedSort . A , // B/S/I/Q/M/A (denoting Bubble/Selection/Insertion/Quick/Merge/All)
12
- orderOfInitalArray = CallSpecifiedSort . r ; // a/d/r (denoting ascending/descending/random)
13
- const ulong numberOfSorts = 5 ;
14
- const int lengthOfArray = 5 ;
15
- const bool printUpdates = true ;
12
+ orderOfInitalArray = CallSpecifiedSort . r ; // a/d/r (denoting ascending/descending/random)
13
+ const ulong numberOfSorts = 5 ; // how many times to sort the array
14
+ const int lengthOfArray = 5 ; // how many elements to sort. Use no more than 99 if printUpdates is true
15
+ const bool printUpdates = true ; // whether to print the array and information at each operation
16
16
17
17
static void Main ( string [ ] args )
18
18
{
You can’t perform that action at this time.
0 commit comments