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

Tuesday common C++ interview problem: Counting islands.

Given a map as a std::vector<std::vector<char>> where 'L' represents land and 'W' represents water, return the number of islands on the map.

An island is an orthogonally (four directions) connected area of land spaces that is fully (orthogonally) surrounded by water.

Solve it yourself: compiler-explorer.com/z/Y8o6ah
Solution: compiler-explorer.com/z/58oW9v