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.4K
active users

Šimon Tóth

Sunday common C++ interview problem: Spiral traversal.

Given a grid of size m*n as std::vector<std::vector<int>>, return the elements of this grid in spiral traversal order.

That is, starting at {0,0}, repeat until all elements are traversed:
- advance over columns
- advance over rows
- descend over columns
- descend over rows

Solve it yourself: compiler-explorer.com/z/rEv5bM
Solution: compiler-explorer.com/z/f8o76h