This repository has been archived on 2024-12-22. You can view files and clone it, but cannot push or open issues or pull requests.
aoc2023/dx.py

31 lines
509 B
Python
Raw Normal View History

from lib import *
2023-12-06 17:47:04 +01:00
EXAMPLE = """
"""
def solve(i: Input, second=False):
2023-12-06 17:47:04 +01:00
res = 0
i.stats()
# g = i.grid2()
# ls = i.lines()
# ps = i.paras()
2023-12-06 17:47:04 +01:00
return res
def main():
DAY_INPUT = "ix.txt"
print("Example 1:", solve(Input(EXAMPLE)))
2023-12-06 17:47:04 +01:00
return
print("Solution 1:", solve(Input(DAY_INPUT)))
2023-12-06 17:47:04 +01:00
return
print("Example 2:", solve(Input(EXAMPLE), True))
2023-12-06 17:47:04 +01:00
return
print("Solution 2:", solve(Input(DAY_INPUT), True))
return
2023-12-06 17:47:04 +01:00
if __name__ == "__main__":
main()