일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 315. Count of Smaller Numbers After Self
- 프로그래머스
- Convert Sorted List to Binary Search Tree
- kaggle
- Class
- concurrency
- Generator
- 시바견
- 파이썬
- data science
- Substring with Concatenation of All Words
- Python Implementation
- 43. Multiply Strings
- t1
- 컴퓨터의 구조
- 30. Substring with Concatenation of All Words
- LeetCode
- Python Code
- DWG
- 109. Convert Sorted List to Binary Search Tree
- iterator
- 운영체제
- 715. Range Module
- 밴픽
- shiba
- Protocol
- Regular Expression
- Python
- attribute
- Decorator
Archives
- Today
- Total
목록31. Next Permutation (1)
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
2021. 9. 9. 22:40