Skip to content

Commit 49bd7be

Browse files
authored
Update MergeSort.java
removed commented code
1 parent 6ad0819 commit 49bd7be

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

MergeSort.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,8 @@
11
public class MergeSort {
22
public static void main(String[] args) {
33

4-
// int[] test = new int[10];
5-
// sort(test, test);
6-
// System.out.println("_______________");
7-
84
int[] a = {2, 1, 3, 2, 7, 8};
95
int[] m = new int[a.length];
10-
// int start = 0;
11-
// int mid = 0;
12-
// int end = a.length - 1;
136
sort(a, m);
147
for (int value : m) {
158
System.out.println(value);
@@ -66,6 +59,5 @@ public static void sort(int[] a, int[] s) {
6659
}
6760

6861
}
69-
7062
}
7163
}

0 commit comments

Comments
 (0)