feat(ml):leetcode41缺失的第一个正数 添加 Python3 代码

pull/14/head
lucifer 2021-04-26 14:50:27 +08:00 committed by GitHub
parent 107732a6c8
commit 2e003abb47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 28 additions and 0 deletions

View File

@ -83,6 +83,8 @@ class Solution {
Java Code:
```java
class Solution {
public int firstMissingPositive(int[] nums) {
@ -115,3 +117,29 @@ class Solution {
}
```
Python3 Code:
```py
class Solution:
def firstMissingPositive(self, nums: List[int]) -> int:
n = len(nums)
def swap(nums, a, b):
temp = nums[a]
nums[a] = nums[b]
nums[b] = temp
i = 0
while i < n:
num = nums[i]
#
if num <= 0 or num >= n or num == i + 1 or nums[num - 1] == num:
i += 1
#
else:
swap(nums, i, num - 1)
for i in range(n):
if nums[i] != i + 1:
return i + 1
return n + 1
```