581 Shortest Unsorted Continuous Subarray
1. Question
Input: [2, 6, 4, 8, 10, 9, 15]
Output: 5
Explanation:
You need to sort [6, 4, 8, 10, 9] in ascending order to make the whole array sorted in ascending order.2. Implementation
3. Time & Space Complexity
Last updated