def test_example_1(self): points = parse_input(path(__file__, 'test-input-1.txt')) c = solve_25(points) self.assertEqual(2, c)
def test_example_1_with_additional_point(self): points = parse_input( path(__file__, 'test-input-1-with-additional-point.txt')) c = solve_25(points) self.assertEqual(1, c)