summaryrefslogtreecommitdiff
path: root/6a.py
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2017-12-02 09:30:07 +0100
committertomsmeding <tom.smeding@gmail.com>2017-12-02 09:30:07 +0100
commit2c1dccf57d7ad5e25e79063dea41fd7bfa9d9ac6 (patch)
tree6c36355ef1a475f2b7cf388402afc96a16588d3d /6a.py
parent2d02f553aa4cc4ded630628eccdf34f55937cee5 (diff)
Move 2016 to its own folder
Diffstat (limited to '6a.py')
-rwxr-xr-x6a.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/6a.py b/6a.py
deleted file mode 100755
index 98d6c57..0000000
--- a/6a.py
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/usr/bin/env python3
-
-import sys
-
-occ=[{} for _ in range(8)]
-for line in sys.stdin:
- for i in range(8):
- occ[i][line[i]]=occ[i].get(line[i],0)+1
-
-for d in occ:
- maxcount=0
- maxat=None
- for k in d:
- if d[k]>maxcount:
- maxcount=d[k]
- maxat=k
- print(maxat,end="")
-
-print()