Files
AoC/2022/Day-02/day02-1.py
2022-12-02 12:12:26 +00:00

45 lines
835 B
Python

#!/usr/bin/python3
points = {
'rock': 1,
'paper': 2,
'scissors': 3,
'lose': 0,
'draw': 3,
'win': 6
}
shapes = {
'A': 'rock',
'B': 'paper',
'C': 'scissors',
'X': 'rock',
'Y': 'paper',
'Z': 'scissors'
}
def outcome(myMove, yourMove):
wins = {
'rock': 'scissors',
'paper': 'rock',
'scissors': 'paper'
}
if myMove == yourMove:
return 'draw'
elif theirMove == wins[myMove]:
return 'win'
else:
return 'lose'
totalScore = 0
with open('input.txt', 'r') as inputFile:
for line in inputFile:
moves = line.strip().split(' ')
ourMove = shapes[moves[1]]
theirMove = shapes[moves[0]]
totalScore += points[ourMove]
totalScore += points[outcome(ourMove, theirMove)]
print(totalScore)