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's common interview problem: Detecting a looped linked-list

Given a singly-linked list, determine whether it is malformed (contains a loop).

If it does, return a pointer to the first node on the loop (nullptr if it doesn't).

Solve it yourself: compiler-explorer.com/z/Mcd5PT
Solution: compiler-explorer.com/z/6fx6vz