Advent of Code 2022: Day 2 Solutions
The time of the year has come when the Advent of Code begins!
I want to share with you my Python solutions to Day 2: Rock Paper Scissors puzzle:
with open('input') as file:
rounds = file.read().split('\n')
def solution_1():
return sum(
map(lambda round: {
'A X':