corrected template move
This commit is contained in:
parent
098bcbd3a8
commit
f743a9636b
5 changed files with 0 additions and 0 deletions
0
advent/days/day__/__init__.py
Normal file
0
advent/days/day__/__init__.py
Normal file
0
advent/days/day__/data/example01.txt
Normal file
0
advent/days/day__/data/example01.txt
Normal file
0
advent/days/day__/data/input.txt
Normal file
0
advent/days/day__/data/input.txt
Normal file
13
advent/days/day__/solution.py
Normal file
13
advent/days/day__/solution.py
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
from __future__ import annotations
|
||||
|
||||
from typing import Iterator
|
||||
|
||||
day_num = 0
|
||||
|
||||
|
||||
def part1(lines: Iterator[str]) -> None:
|
||||
return None
|
||||
|
||||
|
||||
def part2(lines: Iterator[str]) -> None:
|
||||
return None
|
||||
17
advent/days/day__/test_solution.py
Normal file
17
advent/days/day__/test_solution.py
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
from advent.common import input
|
||||
|
||||
from .solution import day_num, part1, part2
|
||||
|
||||
|
||||
def test_part1():
|
||||
lines = input.read_lines(day_num, 'example01.txt')
|
||||
expected = None
|
||||
result = part1(lines)
|
||||
assert result == expected
|
||||
|
||||
|
||||
def test_part2():
|
||||
lines = input.read_lines(day_num, 'example01.txt')
|
||||
expected = None
|
||||
result = part2(lines)
|
||||
assert result == expected
|
||||
Loading…
Add table
Add a link
Reference in a new issue