advent_of_code/2022/2/2_2.py

26 lines
429 B
Python
Raw Normal View History

2022-12-03 02:54:52 +01:00
#!/usr/bin/env python
# 2022 - Advent Of Code 2 - part 2
# file = 'input_example.txt'
file = 'input.txt'
score = {
'AX': 3,
'AY': 4,
'AZ': 8,
'BX': 1,
'BY': 5,
'BZ': 9,
'CX': 2,
'CY': 6,
'CZ': 7
}
with open(file, encoding="utf-8") as f:
cur_score = 0
for line in f.readlines():
hand = line.strip().replace(' ', '')
cur_score += score[hand]
print(cur_score)