Problem clarification and contract
10%Senior signals
- ✓Clarifies whether positions are 1-indexed or 0-indexed, confirms 1 <= m <= n <= length, and asks how m == n should behave.
- ✓Confirms whether the list is guaranteed non-empty and whether node values can repeat.
Staff-level signals
- ◆Raises whether this must avoid extra allocation for very long lists in a memory-constrained context.
Common red flags
- ×Codes immediately while assuming 0-indexing without confirming.
