码迷,mamicode.com
首页 > 其他好文 > 详细

41. 缺失的第一个正数

时间:2018-09-17 14:40:03      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:int   一个   没有   code   style   输出   not   nbsp   pos   

给定一个未排序的整数数组,找出其中没有出现的最小的正整数。

示例 1:

输入: [1,2,0]
输出: 3

示例 2:

输入: [3,4,-1,1]
输出: 2
class Solution:
    def firstMissingPositive(self, nums):
        """
        :type nums: List[int]
        :rtype: int
        """
        list1 = []
        list2 = []
        for i in nums:
            if i > 0:
                list1.append(i)
        for j in range(1,len(list1)+2):
            list2.append(j)
        for k in list2:
            if k not in list1:
                return k

 

41. 缺失的第一个正数

标签:int   一个   没有   code   style   输出   not   nbsp   pos   

原文地址:https://www.cnblogs.com/yuanmingzhou/p/9661822.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!