This commit is contained in:
2022-12-06 07:14:27 +01:00
commit 97aa78cd76
36 changed files with 7669 additions and 0 deletions

4
day02/Makefile Normal file
View File

@@ -0,0 +1,4 @@
s1:
/Users/zev/Documents/repos/advent/2015/env/bin/python3.10 part1.py input.txt | aoc-submit --part 1
s2:
/Users/zev/Documents/repos/advent/2015/env/bin/python3.10 part2.py input.txt | aoc-submit --part 2

0
day02/__init__.py Normal file
View File

2500
day02/input.txt Normal file

File diff suppressed because it is too large Load Diff

79
day02/part1.py Normal file
View File

@@ -0,0 +1,79 @@
from __future__ import annotations
import argparse
import os.path
import pytest
import support
INPUT_TXT = os.path.join(os.path.dirname(__file__), 'input.txt')
def compute(s: str) -> int:
"""
A for Rock, B for Paper, and C for Scissors. The second column--" Suddenly, the Elf is called away to help with someone's tent.
The second column, you reason, must be what you should play in response: X for Rock, Y for Paper, and Z for Scissors.
The score for a single round is the score for the shape you selected (1 for Rock, 2 for Paper, and 3 for Scissors) plus the score for the outcome of the round (0 if you lost, 3 if the round was a draw, and 6 if you won).
"""
score = 0
me_lu = {"X": 1, "Y": 2, "Z": 3}
lu = {"A": 1, "B": 2, "C": 3}
# 2 > 1
# 3 > 2
# 1 > 3
for line in s.split('\n'):
if line.strip() == "":
continue
elf, _, me = line
score += me_lu[me]
if me_lu[me] == lu[elf]:
score += 3
if me_lu[me] == 1 and lu[elf] == 3:
score += 6
elif me_lu[me] == 3 and lu[elf] == 1:
score += 0
elif me_lu[me] > lu[elf]:
score += 6
return score
INPUT_S = '''\
1000
2000
5000
1000
4001
'''
EXPECTED = 5001
@pytest.mark.parametrize(
('input_s', 'expected'),
(
(INPUT_S, EXPECTED),
),
)
def test(input_s: str, expected: int) -> None:
assert compute(input_s) == expected
def main() -> int:
parser = argparse.ArgumentParser()
parser.add_argument('data_file', nargs='?', default=INPUT_TXT)
args = parser.parse_args()
with open(args.data_file) as f, support.timing():
print(compute(f.read()))
return 0
if __name__ == '__main__':
raise SystemExit(main())

82
day02/part2.py Normal file
View File

@@ -0,0 +1,82 @@
from __future__ import annotations
import argparse
import os.path
import pytest
import support
INPUT_TXT = os.path.join(os.path.dirname(__file__), 'input.txt')
def compute(s: str) -> int:
"""
A for Rock, B for Paper, and C for Scissors. The second column--" Suddenly, the Elf is called away to help with someone's tent.
The second column, you reason, must be what you should play in response: X for Rock, Y for Paper, and Z for Scissors.
The score for a single round is the score for the shape you selected (1 for Rock, 2 for Paper, and 3 for Scissors) plus the score for the outcome of the round (0 if you lost, 3 if the round was a draw, and 6 if you won).
"""
score = 0
me_lu = {"X": "lose", "Y": "draw", "Z": "win"}
lu = {"A": 1, "B": 2, "C": 3}
# 2 > 1
# 3 > 2
# 1 > 3
for line in s.split('\n'):
if line.strip() == "":
continue
elf, _, me = line
goal = me_lu[me]
if goal == "draw":
score += lu[elf] + 3
elif goal == "lose":
if lu[elf] == 1:
score += 3
else:
score += lu[elf] - 1
else:
if lu[elf] == 3:
score += 6 + 1
else:
score += 6 + lu[elf] + 1
return score
INPUT_S = '''\
1000
2000
5000
1000
4001
'''
EXPECTED = 5001
@pytest.mark.parametrize(
('input_s', 'expected'),
(
(INPUT_S, EXPECTED),
),
)
def test(input_s: str, expected: int) -> None:
assert compute(input_s) == expected
def main() -> int:
parser = argparse.ArgumentParser()
parser.add_argument('data_file', nargs='?', default=INPUT_TXT)
args = parser.parse_args()
with open(args.data_file) as f, support.timing():
print(compute(f.read()))
return 0
if __name__ == '__main__':
raise SystemExit(main())