-
Notifications
You must be signed in to change notification settings - Fork 29
/
0665-Non-decreasing-Array.py
42 lines (30 loc) · 1.07 KB
/
0665-Non-decreasing-Array.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
'''
Given an array nums with n integers, your task is to check if it could become non-decreasing by modifying at most 1 element.
We define an array is non-decreasing if nums[i] <= nums[i + 1] holds for every i (0-based) such that (0 <= i <= n - 2).
Example 1:
Input: nums = [4,2,3]
Output: true
Explanation: You could modify the first 4 to 1 to get a non-decreasing array.
Example 2:
Input: nums = [4,2,1]
Output: false
Explanation: You can't get a non-decreasing array by modify at most one element.
Constraints:
1 <= n <= 10 ^ 4
- 10 ^ 5 <= nums[i] <= 10 ^ 5
'''
class Solution:
def checkPossibility(self, nums: List[int]) -> bool:
flag = True
for i in range(len(nums) - 1):
if nums[i] > nums[i + 1]:
if i:
if nums[i - 1] <= nums[i + 1]:
nums[i] = nums[i - 1]
else:
nums[i + 1] = nums[i]
if flag:
flag = False
else:
return False
return True