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

Tuesday common C++ interview problem: Longest increasing subsequence.

Given an array of integers (std::vector<int>), determine the length of the longest increasing (not necessarily contiguous) subsequence.

O(n^2) solution is sufficient, O(nlogn) solution is achievable.

Solve it yourself: compiler-explorer.com/z/r3x953
Solution: compiler-explorer.com/z/4rodz6