about summary refs log tree commit diff
path: root/tht/C/Q-2016/bai3.py
diff options
context:
space:
mode:
authorNguyễn Gia Phong <mcsinyx@disroot.org>2020-06-06 21:33:13 +0700
committerNguyễn Gia Phong <mcsinyx@disroot.org>2020-06-06 21:33:13 +0700
commit2f674dc80f0382f1c3178f435714960734dc9d3c (patch)
tree2abba7e4ec72bd16f58f7375126144d3fd9f4bca /tht/C/Q-2016/bai3.py
parentb2d80610db6beda38573890ed169815e495bc663 (diff)
downloadcp-2f674dc80f0382f1c3178f435714960734dc9d3c.tar.gz
Reorganize stuff from secondary school
Diffstat (limited to 'tht/C/Q-2016/bai3.py')
-rw-r--r--tht/C/Q-2016/bai3.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/tht/C/Q-2016/bai3.py b/tht/C/Q-2016/bai3.py
deleted file mode 100644
index f4139a9..0000000
--- a/tht/C/Q-2016/bai3.py
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/usr/bin/env python3
-d = dict()
-with open('bai3.inp') as f:
-    for i in f.readlines():
-        for j in '.,;!?':
-            i = i.replace(j, ' ')
-        for j in i.split():
-            d[j] = d.get(j, 0) + 1
-l = [(value, key) for (key, value) in d.items()]
-l.sort(reverse=True)
-with open('bai3.out', 'w') as f:
-    f.write(str(len(l)) + '\n')
-    for i, j in l:
-        f.write('{} {}\n'.format(i, j))