-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from crerwin/2022_day4
stub out 2022 day 4
- Loading branch information
Showing
4 changed files
with
18 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
from .day1 import Day1 | ||
from .day2 import Day2 | ||
from .day3 import Day3 | ||
from .day4 import Day4 | ||
|
||
days = {1: Day1, 2: Day2, 3: Day3} | ||
days = {1: Day1, 2: Day2, 3: Day3, 4: Day4} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
from advent.day import Day | ||
|
||
|
||
class Day4(Day): | ||
year = 2022 | ||
day = 4 |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import unittest | ||
import pytest | ||
from .test_day import DayTest | ||
from advent.advent2022 import day4 | ||
|
||
@pytest.mark.day | ||
class TestDay4(DayTest): | ||
test_day = day4.Day4() | ||
expected_part_1 = "Advent 2022 Day 4 part 1 not yet implemented." | ||
expected_part_2 = "Advent 2022 Day 4 part 2 not yet implemented." |