Fixing some data types and class declarations

This commit is contained in:
2020-05-29 09:58:45 -05:00
parent 31915918f0
commit 378620e597
3 changed files with 3 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
package Sorting; package Sorting;
public class BubbleSorter extends sorter{ public class BubbleSorter extends Sorter{
//a class to sort arrays of numbers using bubble sort //a class to sort arrays of numbers using bubble sort
} }

View File

@@ -1,5 +1,5 @@
package Sorting; package Sorting;
public class InsertionSorter extends sorter{ public class InsertionSorter extends Sorter{
} }

View File

@@ -1,5 +1,6 @@
package Sorting; package Sorting;
import java.time.Duration;
/** /**
* This is a class to hold the efficiencty results of a sorter. We will use this * 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 * because we can only have one return value from a method, but want to get more