From 2f674dc80f0382f1c3178f435714960734dc9d3c Mon Sep 17 00:00:00 2001 From: Nguyễn Gia Phong Date: Sat, 6 Jun 2020 21:33:13 +0700 Subject: Reorganize stuff from secondary school --- tht/C/Q-2016/bai3.py | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 tht/C/Q-2016/bai3.py (limited to 'tht/C/Q-2016/bai3.py') 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)) -- cgit 1.4.1