summaryrefslogtreecommitdiff
path: root/01/main.py
diff options
context:
space:
mode:
Diffstat (limited to '01/main.py')
-rwxr-xr-x01/main.py39
1 files changed, 39 insertions, 0 deletions
diff --git a/01/main.py b/01/main.py
new file mode 100755
index 0000000..9897dae
--- /dev/null
+++ b/01/main.py
@@ -0,0 +1,39 @@
+#!/bin/python3
+import sys
+import re
+
+MAP = {
+ "one": "1",
+ "two": "2",
+ "three": "3",
+ "four": "4",
+ "five": "5",
+ "six": "6",
+ "seven": "7",
+ "eight": "8",
+ "nine": "9",
+}
+sum = 0
+
+for line in sys.stdin:
+ line = line.strip()
+ real_line = ""
+ for c in range(len(line)):
+ match = re.search("one|two|three|four|five|six|seven|eight|nine|[0-9]", line[c:])
+ if match is None:
+ continue
+ if match.start() != 0:
+ continue
+
+ found = match.group(0)
+ if not found in MAP:
+ real_line += found
+ else:
+ real_line += MAP[found]
+
+ print(real_line)
+ num = int(real_line[0]) * 10 + int(real_line[-1])
+ sum += num
+
+print(f">> {sum}")
+