mp2i-info/td5/test/test.ml
2026-01-12 14:09:38 +01:00

8 lines
150 B
OCaml

open Lib;;
let l = [5; 3; 9; 0; 5; 0];;
let sorted = [0; 0; 3; 5; 5; 9];;
assert (insertion_sort l = sorted);;
assert (selection_sort l = sorted);;