Tasks Details
easy
1.
PermCheck
Check whether array A is a permutation.
Task Score
100%
Correctness
100%
Performance
100%
A non-empty array A consisting of N integers is given.
A permutation is a sequence containing each element from 1 to N once, and only once.
For example, array A such that:
A[0] = 4 A[1] = 1 A[2] = 3 A[3] = 2is a permutation, but array A such that:
A[0] = 4 A[1] = 1 A[2] = 3is not a permutation, because value 2 is missing.
The goal is to check whether array A is a permutation.
Write a function:
class Solution { public int solution(int[] A); }
that, given an array A, returns 1 if array A is a permutation and 0 if it is not.
For example, given array A such that:
A[0] = 4 A[1] = 1 A[2] = 3 A[3] = 2the function should return 1.
Given array A such that:
A[0] = 4 A[1] = 1 A[2] = 3the function should return 0.
Write an efficient algorithm for the following assumptions:
- N is an integer within the range [1..100,000];
- each element of array A is an integer within the range [1..1,000,000,000].
Copyright 2009–2025 by Codility Limited. All Rights Reserved. Unauthorized copying, publication or disclosure prohibited.
Solution
Programming language used Java 8
Time spent on task 9 minutes
Notes
not defined yet
Code: 14:40:55 UTC,
java,
autosave
Code: 14:41:01 UTC,
java,
autosave
Code: 14:41:08 UTC,
java,
verify,
result: Passed
import java.util.*;
class Solution {
public int solution(int[] A) {
Set<Integer> set = new HashSet<>();
for (int a : A) {
set.add(a);
}
for (int i = 1; i <= set.size(); i++) {
if (!set.contains(i)) {
return 0;
}
}
return 1;
}
}
User test case 1:
[1, 2]
Analysis
Code: 14:41:22 UTC,
java,
verify,
result: Passed
import java.util.*;
class Solution {
public int solution(int[] A) {
Set<Integer> set = new HashSet<>();
for (int a : A) {
set.add(a);
}
for (int i = 1; i <= set.size(); i++) {
if (!set.contains(i)) {
return 0;
}
}
return 1;
}
}
User test case 1:
[1, 3]
Analysis
Code: 14:41:54 UTC,
java,
verify,
result: Passed
import java.util.*;
class Solution {
public int solution(int[] A) {
Set<Integer> set = new HashSet<>();
for (int a : A) {
set.add(a);
}
for (int i = 1; i <= set.size(); i++) {
if (!set.contains(i)) {
return 0;
}
}
return 1;
}
}
User test case 1:
[1, 1]
Analysis
Code: 14:45:41 UTC,
java,
verify,
result: Failed
import java.util.*;
class Solution {
public int solution(int[] A) {
boolean[] array = new boolean[100001];
for (int a : A) {
array[a] = true;
}
for (boolean b : array) {
if (b == true) {
return 0;
}
}
return 1;
}
}
User test case 1:
[1, 1]
Analysis
Code: 14:45:56 UTC,
java,
verify,
result: Failed
import java.util.*;
class Solution {
public int solution(int[] A) {
boolean[] array = new boolean[100001];
for (int a : A) {
array[a] = true;
}
for (boolean b : array) {
if (b == false) {
return 0;
}
}
return 1;
}
}
User test case 1:
[1, 1]
Analysis
Code: 14:46:25 UTC,
java,
autosave
Code: 14:46:36 UTC,
java,
autosave
Code: 14:46:46 UTC,
java,
verify,
result: Failed
Analysis
Compile error
Solution.java:11: error: cannot find symbol if (b == false) { ^ symbol: variable b location: class Solution 1 error
Code: 14:46:53 UTC,
java,
verify,
result: Failed
Analysis
Compile error
Solution.java:11: error: incomparable types: int and boolean if (A[i] == false) { ^ 1 error
Code: 14:47:04 UTC,
java,
verify,
result: Failed
import java.util.*;
class Solution {
public int solution(int[] A) {
boolean[] array = new boolean[A.length + 1];
for (int a : A) {
array[a] = true;
}
for (int i = 1; i<=A.length; i++) {
if (array[i] == false) {
return 0;
}
}
return 1;
}
}
User test case 1:
[1, 1]
Analysis
expand all
Example tests
1.
0.004 s
OK
1.
0.008 s
RUNTIME ERROR,
tested program terminated unexpectedly
stderr:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 4 at Solution.solution(Solution.java:7) at Exec.run(exec.java:46) at Exec.main(exec.java:31)
Code: 14:48:10 UTC,
java,
verify,
result: Failed
import java.util.*;
class Solution {
public int solution(int[] A) {
boolean[] array = new boolean[A.length + 1];
for (int a : A) {
array[a] = true;
}
for (int i = 1; i<=A.length; i++) {
if (array[i] == false) {
return 0;
}
}
return 1;
}
}
User test case 1:
[1, 1]
Analysis
expand all
Example tests
1.
0.004 s
OK
1.
0.004 s
RUNTIME ERROR,
tested program terminated unexpectedly
stderr:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 4 at Solution.solution(Solution.java:7) at Exec.run(exec.java:46) at Exec.main(exec.java:31)
Code: 14:49:02 UTC,
java,
autosave
Code: 14:49:13 UTC,
java,
autosave
Code: 14:49:34 UTC,
java,
verify,
result: Passed
import java.util.*;
class Solution {
public int solution(int[] A) {
Set<Integer> set = new HashSet<>();
for (int a : A) {
set.add(a);
}
for (int i = 1; i<=A.length; i++) {
if (!set.contains(i)) {
return 0;
}
}
return 1;
}
}
User test case 1:
[1, 1]
Analysis
Code: 14:49:42 UTC,
java,
verify,
result: Passed
import java.util.*;
class Solution {
public int solution(int[] A) {
Set<Integer> set = new HashSet<>();
for (int a : A) {
set.add(a);
}
for (int i = 1; i<=A.length; i++) {
if (!set.contains(i)) {
return 0;
}
}
return 1;
}
}
User test case 1:
[1, 1]
Analysis
Code: 14:49:47 UTC,
java,
final,
score: 
100
Analysis summary
The solution obtained perfect score.
Analysis
Detected time complexity:
O(N) or O(N * log(N))
expand all
Correctness tests
1.
0.004 s
OK
2.
0.004 s
OK
1.
0.004 s
OK
2.
0.004 s
OK
1.
0.004 s
OK
2.
0.004 s
OK
3.
0.004 s
OK
4.
0.004 s
OK
1.
0.008 s
OK
2.
0.004 s
OK
3.
0.004 s
OK
4.
0.004 s
OK
1.
0.004 s
OK
2.
0.004 s
OK
expand all
Performance tests
1.
0.048 s
OK
2.
0.048 s
OK
1.
0.380 s
OK
2.
0.380 s
OK
1.
0.496 s
OK
2.
0.496 s
OK
1.
0.496 s
OK
2.
0.488 s
OK
1.
0.008 s
OK
2.
0.220 s
OK
3.
0.004 s
OK
1.
0.004 s
OK
2.
0.004 s
OK
3.
0.048 s
OK
4.
0.500 s
OK
5.
0.500 s
OK