master
freverda 2022-11-10 15:54:08 +01:00
parent e7da4c77e2
commit 646b6baf5e
1 changed files with 16 additions and 0 deletions

16
InsertionSort.java Normal file
View File

@ -0,0 +1,16 @@
/**
* Beschreiben Sie hier die Klasse InsertionSort.
*
* @author (Ihr Name)
* @version (eine Versionsnummer oder ein Datum)
*/
import java.util.Random;
public class InsertionSort
{
public static void InsertionSort(){
}
}