-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday.py
39 lines (24 loc) · 1.52 KB
/
day.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
########################################################################################################################
### Advent Setup #######################################################################################################
########################################################################################################################
import os
from AdventBuilder import setupDayVariables, prettyInfo, prettyAnswers
__dir__ = os.path.dirname(__file__)
DAY_NUM, DAY_DESC, DAY_INPUT, DAY_INPUT_STR = setupDayVariables(__dir__)
########################################################################################################################
#### My Solution #######################################################################################################
########################################################################################################################
def solve1(inp):
return None
def solve2(inp):
return None
def solution():
return solve1(DAY_INPUT), solve2(DAY_INPUT)
########################################################################################################################
### Output #############################################################################################################
########################################################################################################################
def main():
print(prettyInfo(DAY_DESC, DAY_INPUT_STR))
print(prettyAnswers(*solution()))
if __name__ == "__main__":
main()