会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
ifreewolf
博客园
首页
新随笔
联系
管理
订阅
2020年4月29日
41.给你一个未排序的整数数组,请你找出其中没有出现的最小的正整数。
摘要: 自己的暴力解法class Solution { public int firstMissingPositive(int[] nums) { Set<Integer> set = new TreeSet<Integer>(); for(int num: nums){ set.add(num); } S
阅读全文
posted @ 2020-04-29 23:00 ifreewolf
阅读(2154)
评论(0)
推荐(0)
编辑
公告