advent_of_code/8/8.py
kleph ba86d90e98
Some checks failed
continuous-integration/drone/push Build is failing
lint (W1514)
2022-04-05 13:56:34 +02:00

25 lines
513 B
Python
Executable file

#!/usr/bin/env python
# 2021 - Advent Of Code - 8
def parse_file(file):
outs = []
with open(file, encoding="utf-8") as f:
for line in f.readlines():
_, out = line.strip().split('| ')
outs.append(out)
return outs
# outputs = parse_file('input_example.txt')
outputs = parse_file('input.txt')
count = 0
for o in outputs:
words = o.split(' ')
for w in words:
length = len(w)
if length in (2, 3, 4, 7):
count += 1
print(f'{count}')