일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- concurrency
- 43. Multiply Strings
- 315. Count of Smaller Numbers After Self
- Regular Expression
- Python Implementation
- t1
- 715. Range Module
- shiba
- data science
- Python
- LeetCode
- Substring with Concatenation of All Words
- kaggle
- 프로그래머스
- Protocol
- Class
- Decorator
- 시바견
- attribute
- 109. Convert Sorted List to Binary Search Tree
- Python Code
- iterator
- 컴퓨터의 구조
- 밴픽
- 파이썬
- 30. Substring with Concatenation of All Words
- 운영체제
- DWG
- Generator
- Convert Sorted List to Binary Search Tree
Archives
- Today
- Total
Scribbling
LeetCode: 31. Next Permutation 본문
class Solution:
def nextPermutation(self, nums: List[int]) -> None:
i = len(nums) - 1
while i - 1 >= 0 and nums[i-1] >= nums[i]:
i -= 1
if i == 0:
return nums.sort()
swap_idx, swap_val = None, int(1e9)
for j in range(i, len(nums)):
if nums[j] > nums[i-1] and nums[j] < swap_val:
swap_val = nums[j]
swap_idx = j
nums[i-1], nums[swap_idx] = nums[swap_idx], nums[i-1]
nums[i:] = sorted(nums[i:])
'Computer Science > Coding Test' 카테고리의 다른 글
34. Find First and Last Position of Element in Sorted Array (0) | 2021.09.11 |
---|---|
33. Search in Rotated Sorted Array (0) | 2021.09.11 |
35. Search Insert Position (0) | 2021.09.08 |
LeetCode: 49. Group Anagrams (0) | 2021.09.08 |
LeetCode: 41. First Missing Positive (0) | 2021.09.08 |