首页 > 代码库 > Codility---MissingInteger
Codility---MissingInteger
Task description
Write a function:
class Solution { public int solution(int[] A); }
that, given a non-empty zero-indexed array A of N integers, returns the minimal positive integer (greater than 0) that does not occur in A.
For example, given:
A[0] = 1 A[1] = 3 A[2] = 6 A[3] = 4 A[4] = 1 A[5] = 2the function should return 5.
Assume that:
- N is an integer within the range [1..100,000];
- each element of array A is an integer within the range [−2,147,483,648..2,147,483,647].
Complexity:
- expected worst-case time complexity is O(N);
- expected worst-case space complexity is O(N), beyond input storage (not counting the storage required for input arguments).
Elements of input arrays can be modified.
Solution
Programming language used: Java
Total time used: 13 minutes
Code: 12:04:26 UTC, java, final, score: 100
show code in pop-up
12345678910111213141516171819202122
// you can also use imports, for example:// import java.util.*;// you can write to stdout for debugging purposes, e.g.// System.out.println("this is a debug message");import java.util.Arrays;class Solution { public int solution(int[] A) { // write your code in Java SE 8 Arrays.sort(A); int j=1; for(int i=0; i<A.length; i++) { if(A[i] <= 0) continue; if(A[i] == j) j++; else if(A[i] > j) break; } return j; }}
Codility---MissingInteger
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。