581. Shortest Unsorted Continuous Subarray
Difficulty: Easy
Topics: Array
Similar Questions:
Problem:
Given an integer array, you need to find one continuous subarray that if you only sort this subarray in ascending order, then the whole array will be sorted in ascending order, too.
You need to find the shortest such subarray and output its length.
Example 1:
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.
Note:
Solutions:
class Solution {
public:
int findUnsortedSubarray(vector<int>& nums) {
if (nums.size() == 0) return 0;
vector<int> copy = nums;
sort(copy.begin(), copy.end());
int left = 0;
int right = nums.size() - 1;
while (left <= right && nums[left] == copy[left]) ++left;
while (left <= right && nums[right] == copy[right]) --right;
return right - left + 1;
}
};