From 88338805a325c4097e1456e3c6c4f3c25bbe4f15 Mon Sep 17 00:00:00 2001 From: James Mc Dermott Date: Thu, 27 Apr 2017 15:29:41 +0100 Subject: [PATCH] Rename SelectionSort.java to Sorts/SelectionSort.java --- SelectionSort.java => Sorts/SelectionSort.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename SelectionSort.java => Sorts/SelectionSort.java (99%) diff --git a/SelectionSort.java b/Sorts/SelectionSort.java similarity index 99% rename from SelectionSort.java rename to Sorts/SelectionSort.java index 82fecda12..955e7d65b 100644 --- a/SelectionSort.java +++ b/Sorts/SelectionSort.java @@ -50,4 +50,4 @@ class SelectionSort input.close(); } -} \ No newline at end of file +}