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: Strictly increasing array.

Given two arrays of positive integers, determine the lowest number of operations to make the first array strictly increasing (-1 if not possible).

In one operation, you can change one element of the first array to a value from the second array (arr1[i] = arr2[j]).

Solve it yourself: compiler-explorer.com/z/fj5jGP
Solution: compiler-explorer.com/z/aqf83e