aoc-2021-rust

Advent of Code 2021 Solutions in Rust
git clone https://git.sinitax.com/sinitax/aoc-2021-rust
Log | Files | Refs | README | sfeed.txt

part2 (420B)


      1--- Part Two ---
      2
      3Sometimes, it's a good idea to appreciate just how big the ocean is. Using the Manhattan distance,
      4how far apart do the scanners get?
      5
      6In the above example, scanners 2 (1105,-1205,1229) and 3 (-92,-2380,-20) are the largest Manhattan
      7distance apart. In total, they are 1197 + 1175 + 1249 = 3621 units apart.
      8
      9What is the largest Manhattan distance between any two scanners?
     10
     11