Skip to content

Latest commit

 

History

History
5 lines (4 loc) · 212 Bytes

README.md

File metadata and controls

5 lines (4 loc) · 212 Bytes

Advent-of-code-2022

Things I learned

  • day11 -> (a+b)%c = (a%c + b%c)%c -> this is useful for large numbers
  • day12 -> Sometimes to get shortest path with BFS it's easier to start from the end and go backwards