Solve day 5
This commit is contained in:
14
05/__main__.py
Normal file
14
05/__main__.py
Normal file
@@ -0,0 +1,14 @@
|
||||
from pathlib import Path
|
||||
|
||||
from almanac import maps, seeds
|
||||
from puzzle import solve_pt_1, solve_pt_2
|
||||
|
||||
|
||||
def main():
|
||||
print("Lowest Location Numbers:")
|
||||
print("Part 1 -", solve_pt_1(seeds, maps))
|
||||
print("Part 2 -", solve_pt_2(seeds, maps), " " * 30)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
Reference in New Issue
Block a user