Browse Source

Correcting the templates

pull/2/head
Ryan Reed 3 years ago
parent
commit
f0aa669905
2 changed files with 6 additions and 2 deletions
  1. +4
    -0
      puzzles/TEMPLATE_dayXX.py
  2. +2
    -2
      puzzles/TEMPLATE_test_dayXX.py

+ 4
- 0
puzzles/TEMPLATE_dayXX.py View File

@ -45,3 +45,7 @@ def main() -> None:
print(f"Part 1 Result: {part1_result}")
print(f"Part 2 Result: {part2_result}")
if __name__ == "__main__":
main()

+ 2
- 2
puzzles/TEMPLATE_test_dayXX.py View File

@ -28,12 +28,12 @@ def dayXX_data():
@pytest.mark.skip(reason="Not implemented")
def test_example1(example_data1):
assert aoc.part1(example_data) == ...
assert aoc.part1(example_data1) == ...
@pytest.mark.skip(reason="Not implemented")
def test_example2(example_data2):
assert aoc.part2(example_data) == ...
assert aoc.part2(example_data2) == ...
@pytest.mark.skip(reason="Not implemented")


Loading…
Cancel
Save