hachyderm.io is one of the many independent Mastodon servers you can use to participate in the fediverse.
Hachyderm is a safe space, LGBTQIA+ and BLM, primarily comprised of tech industry professionals world wide. Note that many non-user account types have restrictions - please see our About page.

Administered by:

Server stats:

9.5K
active users

Šimon Tóth

Sunday common C++ interview problem: Shortest path to all keys.

Given a map represented as std::vector<std::vector<char>>, where:

- # are walls
- @ is the entrance
- the first k lowercase letters are keys
- corresponding uppercase letters are locked doors

Assume k <= 6 and return the shortest path length that collects all keys (-1 if none).

Solve it yourself: godbolt.org/z/9dW6Gzrer
Solution: godbolt.org/z/rqbEe3xKv