Files
pl@gohorb.ba-horb.de a0e59eebe8
All checks were successful
Build and Test with Maven / Build-and-test-with-Maven (push) Successful in 1m35s
new file: AddEle.jav
new file:   Fac.jav
	new file:   Faculty.jav
2025-09-24 13:53:55 +02:00

26 lines
321 B
Java

import java.util.List;
import java.util.ArrayList;
import java.lang.String;
public class Sorting{
merge(a, b){
a.addAll(b);
return a;
}
sort(in){
var firstHalf = in;
var secondHalf = in;
return merge(sort(firstHalf), sort(secondHalf));
}
/*
void sort(a){
a = merge(a,a);
}
*/
}