about summary refs log tree commit diff
path: root/12/QG-2017/virus_randinp.py
diff options
context:
space:
mode:
Diffstat (limited to '12/QG-2017/virus_randinp.py')
-rwxr-xr-x12/QG-2017/virus_randinp.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/12/QG-2017/virus_randinp.py b/12/QG-2017/virus_randinp.py
deleted file mode 100755
index 566e452..0000000
--- a/12/QG-2017/virus_randinp.py
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/usr/bin/env python3
-import random
-import string
-
-with open('VIRUS.INP', 'w') as f:
-    f.write('10\n')
-    for _ in range(3000):
-        f.write(random.choice(string.ascii_lowercase))
-    f.write('\n0\n1\n2\n3\n5\n6\n7\n8\n9\n10\n')