summaryrefslogtreecommitdiff
path: root/3b.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 /3b.py
parent2d02f553aa4cc4ded630628eccdf34f55937cee5 (diff)
Move 2016 to its own folder
Diffstat (limited to '3b.py')
-rwxr-xr-x3b.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/3b.py b/3b.py
deleted file mode 100755
index ed2e87f..0000000
--- a/3b.py
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/usr/bin/env python3
-
-import sys, re
-
-lines=[[int(x) for x in re.findall(r"\d+",l)] for l in sys.stdin.read().split("\n")[:-1]]
-
-count=0
-for i in range(len(lines)//3):
- for j in range(3):
- a,b,c=[l[j] for l in lines[3*i:3*i+3]]
- if a+b+c>2*max(a,b,c):
- count+=1
-
-print(count)