blob: 6aaf60ca8048a63f335fbbb07cf457c609c469d3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/fish
echo hej > out_c
echo hej > out_r
while diff out_c out_r
python gen.py -2147483648 2147483647 600000 > max
time ./radix < max > out_r
time ~/.cache/target/release/kattis-kth-alginda-quicksort < max > out_c
end
|