Add sheet12

This commit is contained in:
Lukas Kalbertodt
2017-01-26 01:03:58 +01:00
parent e69ec3013c
commit ebd120834e
3 changed files with 26 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
fn main() {
let mut arr = [83, 12, 13, 35, 91, 71, 75, 58, 26, 38, 2, 23, 10];
sleep_sort(&mut arr);
assert_eq!(arr, [2, 10, 12, 13, 23, 26, 35, 38, 58, 71, 75, 83, 91]);
}
fn sleep_sort(arr: &mut [u64]) {}