Skip to content

Commit 6d6969d

Browse files
authored
Update MergeSortAlgorithm.java
1 parent a30132f commit 6d6969d

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

algorithms/MergeSortAlgorithm.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,14 @@ public class MergeSortAlgorithm
44
public static void main(String[] args)
55
{
66
Integer[] b = {2,4,6,7,9,1};
7+
8+
79
//Declare MergeSorting algorithm function first
10+
811
MergeSortProcessor(b);
12+
913
//check the sorts array and outputs it
14+
1015
System.out.println(Arrays.toString(b));
1116
}
1217

0 commit comments

Comments
 (0)