blob: c25c008927b0659d9fc230c3ea10acc67e3a8660 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
make wzo
make brut
for i in {1..1000}
do python3 test.py $i > test.in
./wzo <test.in >wa.out
./brut <test.in > t.out
if diff -w wa.out t.out
then
echo ok
else
echo "nieok"
break
fi
done
|