This website works better with JavaScript.
Home
Explore
Help
Sign In
david.wurm
/
Mergesort
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Activity
Browse Source
changed file
master
David
5 years ago
parent
b9f97e246b
commit
b181318039
1 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
src/Mergesort.java
+ 2
- 2
src/Mergesort.java
View File
@@ -1,7 +1,7 @@
public class Mergesort {
public static int[] intArr = {
16, 23, 14, 7, 21, 20, 6, 1, 17, 13, 12, 9,
3, 19
};
public static int[] intArr = {16, 23, 14, 7, 21, 20, 6, 1, 17, 13, 12, 9,
3, 19};
public int[] sort(int l, int r) {
Write
Preview
Loading…
Cancel
Save