Skip to content

Commit

Permalink
rename sort classes
Browse files Browse the repository at this point in the history
  • Loading branch information
aTan-aka-Xellos committed Dec 2, 2018
1 parent 5b87050 commit c1fcfa3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import static algorithms.sorting.SortUtils.*;
import static java.util.Arrays.copyOf;

public class InsertionSort {
public class Insertion {

public static void sort(int[] array) {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import static algorithms.sorting.SortUtils.swap;
import static java.util.Arrays.copyOf;

public class SelectionSort {
public class Selection {

public static void sort(int[] array) {

Expand Down

0 comments on commit c1fcfa3

Please sign in to comment.