题解 | #缺失的第一个正整数#
缺失的第一个正整数
http://www.nowcoder.com/practice/50ec6a5b0e4e45348544348278cdcee5
public class Solution {
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param nums int整型一维数组
* @return int整型
*/
public int minNumberDisappeared (int[] nums) {
// write code here
HashMap<Integer,Integer> maps=new HashMap<>();
for(int i=0;i<nums.length;i++){
maps.put(nums[i], maps.getOrDefault(nums[i], 0)+1);
}
int index=1;
int res=1;
while(true){
if(!maps.containsKey(index)){
res=index;
break;
}else{
index++;
}
}
return res;
}
}