Related Coding / DSA
Longest Strictly Increasing Subsequence
Given a sequence of integers, find the length of the longest subsequence (not necessarily contiguous) whose elements are strictly increasing.
Given a list of integers, find the maximum sum you can obtain by choosing elements such that no two chosen elements are adjacent in the list. You may choose no elements, so the answer is 0 for an empty list or when every choice would reduce the sum.
Given a list of integers, return the maximum sum you can obtain by selecting elements such that no two selected elements are adjacent. You may choose no elements, so return 0 for an empty list or when every value is negative. The list has at most 100000 elements, and each value is between -10000 and 10000 inclusive. Start with any clarifying questions.
Work in the provided coding workspace while explaining your decisions to the live interviewer. Validation may use inline tests, examples, comments, or a verbal walkthrough.
Practice this problem in the live coding workspace while the interviewer probes your clarification, implementation, trade-offs, and validation.
Continue to DashboardContinue preparing
Related Coding / DSA
Given a sequence of integers, find the length of the longest subsequence (not necessarily contiguous) whose elements are strictly increasing.
Related Coding / DSA
Given a non-empty list of integers, find the maximum sum of any contiguous non-empty subarray, with follow-up discussion of returning indices and handling a streaming variant.
Related Coding / DSA
Given a set of coin denominations and a target amount, find the minimum number of coins (with unlimited supply of each denomination) needed to make exactly that amount, or report it is impossible.
Related Coding / DSA
Given one-way routes between cities each with a cost, find the cheapest total cost from a source city to a destination city using at most k intermediate stops.