31 lines
529 B
Python
31 lines
529 B
Python
from lib import *
|
|
|
|
EXAMPLE = """
|
|
"""
|
|
|
|
def solve(input: Input, second=False):
|
|
res = 0
|
|
input.stats()
|
|
# g = input.grid2()
|
|
# ls = input.lines()
|
|
# ps = input.paras()
|
|
return res
|
|
|
|
def main():
|
|
DAY_INPUT = "ix.txt"
|
|
|
|
print("Example 1:", solve(Input(EXAMPLE)))
|
|
return
|
|
|
|
print("Solution 1:", solve(Input(DAY_INPUT)))
|
|
return
|
|
|
|
print("Example 2:", solve(Input(EXAMPLE), True))
|
|
return
|
|
|
|
print("Solution 2:", solve(Input(DAY_INPUT), True))
|
|
return
|
|
|
|
if __name__ == "__main__":
|
|
main()
|