Problem clarification and contract
10%Senior signals
- ✓Clarifies that the subsequence need not be contiguous, confirms strict increase (no equal adjacent values in the subsequence), and asks what to return for an empty array.
- ✓Confirms whether values can repeat in the original array even though the subsequence must be strictly increasing.
Staff-level signals
- ◆Asks about expected input size to justify pursuing the logarithmic-factor improvement.
Common red flags
- ×Codes immediately while assuming the subsequence must be contiguous without confirming.
