continuing to fill out module for student

This commit is contained in:
2020-05-29 09:48:47 -05:00
parent bbcfb13d34
commit 31915918f0
2 changed files with 5 additions and 5 deletions

View File

@@ -8,7 +8,7 @@ package Sorting;
public class SortResult {
private int[] sortedArray;
private int comparisonsUsed;
private int swapsUsed;
private timeUsed;
private long comparisonsUsed;
private long swapsUsed;
private Duration timeUsed;
}