about summary refs log tree commit diff
path: root/others/dict/dict.py
diff options
context:
space:
mode:
Diffstat (limited to 'others/dict/dict.py')
-rwxr-xr-xothers/dict/dict.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/others/dict/dict.py b/others/dict/dict.py
deleted file mode 100755
index 76b8414..0000000
--- a/others/dict/dict.py
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/usr/bin/env python3
-
-from itertools import islice
-from bisect import bisect_left as bisect
-
-
-with open('dict.inp') as fi, open('dict.out', 'w') as fo:
-    words = list(islice(fi, int(fi.readline())))
-    words.sort()
-
-    for _ in range(int(fi.readline())):
-        s = fi.readline().strip()
-        i = bisect(words, s)
-        count = 0
-        while i + count < len(words) and words[i + count].startswith(s):
-            count += 1
-        fo.write("{}\n".format(count))