modified: ../../test/bytecode/javFiles/Sorting.jav

sort hinzugefuegt
This commit is contained in:
Martin Plümicke 2018-09-26 15:40:51 +02:00
parent f46d26e53f
commit 85d5485595

View File

@ -8,6 +8,11 @@ class Sorting{
return a;
}
sort(in){
var firstHalf = in;
var secondHalf = in;
return merge(sort(firstHalf), sort(secondHalf));
}
/*
void sort(ArrayList<String> a){