首页 > 代码库 > 581. Shortest Unsorted Continuous Subarray 最短未排序的连续子阵列
581. Shortest Unsorted Continuous Subarray 最短未排序的连续子阵列
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:
- Then length of the input array is in range [1, 10,000].
- The input array may contain duplicates, so ascending order here means <=.
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
来自为知笔记(Wiz)
581. Shortest Unsorted Continuous Subarray 最短未排序的连续子阵列
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。