[py] Solve 2022_03
This commit is contained in:
parent
f44036b5de
commit
d6f8ecf700
2 changed files with 25 additions and 1 deletions
|
|
@ -2,11 +2,12 @@ import sys
|
|||
import argparse
|
||||
from pathlib import Path
|
||||
|
||||
from .y2022 import d01, d02, d04
|
||||
from .y2022 import d01, d02, d03, d04
|
||||
|
||||
DAYS = {
|
||||
"2022_01": y2022.d01.solve,
|
||||
"2022_02": y2022.d02.solve,
|
||||
"2022_03": y2022.d03.solve,
|
||||
"2022_04": y2022.d04.solve,
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue