26 lines
429 B
Python
26 lines
429 B
Python
|
#!/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)
|
||
|
|