2025 init

This commit is contained in:
Romain Lefeuvre
2025-11-18 14:44:07 +01:00
commit ac81d61d01
21 changed files with 986 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package fr.istic.vv;
import java.util.Comparator;
public class Sorting {
public static <T> T[] bubblesort(T[] array, Comparator<T> comparator) { return null; }
public static <T> T[] quicksort(T[] array, Comparator<T> comparator) { return null; }
public static <T> T[] mergesort(T[] array, Comparator<T> comparator) { return null; }
}

View File

@@ -0,0 +1,9 @@
package fr.istic.vv;
import net.jqwik.api.*;
public class SortingTest {
@Property
boolean absoluteValueOfAllNumbersIsPositive(@ForAll int anInteger) {
return Math.abs(anInteger) >= 0;
}
}