Advent of Code 2022 https://adventofcode.com/2022
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

day7-1.py 447B

12345678910111213141516171819202122232425262728293031323334
  1. # -------
  2. # imports
  3. # -------
  4. from string import ascii_letters
  5. # ---------
  6. # constants
  7. # ---------
  8. DEBUG=True
  9. # ----------------
  10. # helper functions
  11. # ----------------
  12. def debug(*args):
  13. if DEBUG:
  14. print(args)
  15. # -------------
  16. # main function
  17. # -------------
  18. def main():
  19. with open("input7.txt", "r") as file:
  20. intext = file.read()
  21. # --------------
  22. # run the script
  23. # --------------
  24. if __name__ == "__main__":
  25. main()