summaryrefslogtreecommitdiff
path: root/kattis-kth-alginda-quicksort/test
blob: 4314cbf55d06c0a57127fb6a2e0b87d451e824b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

echo hej > out_1
echo hej > out_2

while diff out_1 out_2; do
    python gen.py -2147483648 2147483647 > max
    "$1" < max > out_1
    "$2" < max > out_2
done