diff options
author | mathiasmagnusson <mathiasmagnussons@gmail.com> | 2022-12-09 18:00:41 +0100 |
---|---|---|
committer | mathiasmagnusson <mathiasmagnussons@gmail.com> | 2022-12-09 18:00:41 +0100 |
commit | a1eb38bebe6ce1668c3f96489506c3b05b9fe5cb (patch) | |
tree | cccf0fd4763dba123efab7c896292dc18d1eb458 /kattis-kth-alginda-quicksort/gen.py | |
parent | e41e6c8bc72e3300a0fa137f198454341bc315b1 (diff) | |
download | programming-problem-solving-a1eb38bebe6ce1668c3f96489506c3b05b9fe5cb.tar.gz |
Move stuff around
Diffstat (limited to 'kattis-kth-alginda-quicksort/gen.py')
-rw-r--r-- | kattis-kth-alginda-quicksort/gen.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/kattis-kth-alginda-quicksort/gen.py b/kattis-kth-alginda-quicksort/gen.py deleted file mode 100644 index 2e5067b..0000000 --- a/kattis-kth-alginda-quicksort/gen.py +++ /dev/null @@ -1,10 +0,0 @@ -from random import randint as r -from sys import argv - -lo = int(argv[1]) -hi = int(argv[2]) -n = int(argv[3]) if len(argv) > 3 else r(1, 600000) - -xs = [r(lo, hi) for _ in range(n)] - -print(len(xs), *(str(x) for x in xs)) |