diff options
author | mathiasmagnusson <mathiasmagnussons@gmail.com> | 2022-02-28 19:10:54 +0100 |
---|---|---|
committer | mathiasmagnusson <mathiasmagnussons@gmail.com> | 2022-02-28 19:10:54 +0100 |
commit | d76ab9f13f60e9ca8a0e578d9cb209064a9a790d (patch) | |
tree | 9be7b73fd162d9668f56993f798768a339714450 /kattis-kth-alginda-quicksort/test | |
parent | d5473756b304ebda9eeee6592e4555d15c910ee2 (diff) | |
download | programming-problem-solving-d76ab9f13f60e9ca8a0e578d9cb209064a9a790d.tar.gz |
Minor input format degeneralization
Diffstat (limited to 'kattis-kth-alginda-quicksort/test')
-rwxr-xr-x | kattis-kth-alginda-quicksort/test | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/kattis-kth-alginda-quicksort/test b/kattis-kth-alginda-quicksort/test new file mode 100755 index 0000000..4314cbf --- /dev/null +++ b/kattis-kth-alginda-quicksort/test @@ -0,0 +1,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 |