advent-of-code/2021-python/tests/test_day_10.py
Anders Ytterström 801f977e92 Solve 2021:10 "Syntax Scoring"
Spent over an hour trying to figure out the incomplete sequenses, only
to realize it was easier to begin from the other way around.

After that, solution came out nice and clean.
2021-12-10 13:27:55 +01:00

39 lines
912 B
Python

import unittest
from solutions.day_10 import Solution
class Day10TestCase(unittest.TestCase):
def setUp(self):
self.solution = Solution()
self.puzzle_input = self.solution.parse_input(
"""
[({(<(())[]>[[{[]{<()<>>
[(()[<>])]({[<{<<[]>>(
{([(<{}[<>[]}>{[]{[(<()>
(((({<>}<{<{<>}{[]{[]{}
[[<[([]))<([[{}[[()]]]
[{[{({}]{}}([{[{{{}}([]
{<[[]]>}<{[{[{[]{()[[[]
[<(<(<(<{}))><([]([]()
<{([([[(<>()){}]>(<<{{
<{([{{}}[<[[[<>{}]]]>[]]
"""
)
def test_parse_puzzle_input(self):
data = """
abc
efg
"""
assert self.solution.parse_input(data) == ["abc", "efg"]
def test_solve_first_part(self):
assert self.solution.solve(self.puzzle_input) == 26397
def test_solve_second_part(self):
assert self.solution.solve_again(self.puzzle_input) == 288957
if __name__ == "__main__":
unittest.main()