标签:笔记 sub ons == san length inpu neu copy
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:
class Solution:
def findUnsortedSubarray(self, nums):
"""
:type nums: List[int]
:rtype: int
"""
copyNums = nums[::]
copyNums.sort()
left = len(nums) - 1
right = len(nums) - 1
for i in range(0, len(nums)):
if nums[i] != copyNums[i]:
left = i
break
for i in range(len(nums) - 1, 0, -1):
if nums[i] != copyNums[i]:
right = i
break
if right - left == 0:
return 0
else:
return (right - left) + 1
581. Shortest Unsorted Continuous Subarray 最短未排序的连续子阵列
标签:笔记 sub ons == san length inpu neu copy
原文地址:http://www.cnblogs.com/xiejunzhao/p/7242547.html