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:

9K
active users

Šimon Tóth

Tuesday common C++ interview problem: Race car.

Given a target, you are given the following car controls:

- accelerate: position += speed; speed *= 2;
- reverse: speed = (speed > 0) ? -1 : 1;

What is the minimum number of steps (A/R) to reach the target? Assume target {1..10’000} and starting speed of one.

Solve it yourself: compiler-explorer.com/z/cxqzsx
Solution: compiler-explorer.com/z/Wrs17a