advent-of-code-2021 icon indicating copy to clipboard operation
advent-of-code-2021 copied to clipboard

🎄 My Advent of Code solutions in Rust. http://adventofcode.com/2021

Results 1 advent-of-code-2021 issues
Sort by recently updated
recently updated
newest added

The `pathfinding` library implements classic dijkstra's algorithm by a BinaryHeap. It can be further improved, some of my thoughts are: 1) We can use a bucket queue because all weights...

enhancement