0581. Shortest Unsorted Continuous Subarray
Description
**Input:** nums = [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.**Input:** nums = [1,2,3,4]
**Output:** 0**Input:** nums = [1]
**Output:** 0ac1: stack with 2 passes
ac2: similar idea without stack
Last updated