Tasks Details
medium
Find the smallest positive integer that does not occur in a given sequence.
Task Score
66%
Correctness
80%
Performance
50%
This is a demo task.
Write a function:
def solution(A)
that, given an array A of N integers, returns the smallest positive integer (greater than 0) that does not occur in A.
For example, given A = [1, 3, 6, 4, 1, 2], the function should return 5.
Given A = [1, 2, 3], the function should return 4.
Given A = [−1, −3], the function should return 1.
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,000,000..1,000,000].
Copyright 2009–2025 by Codility Limited. All Rights Reserved. Unauthorized copying, publication or disclosure prohibited.
Solution
Programming language used Python
Time spent on task 33 minutes
Notes
not defined yet
Code: 07:07:59 UTC,
java,
autosave
Code: 07:24:38 UTC,
py,
verify,
result: Failed
Analysis
expand all
Example tests
1.
0.036 s
WRONG ANSWER,
got 2 expected 5
1.
0.036 s
RUNTIME ERROR,
tested program terminated with exit code 1
stderr:
Invalid result type, int expected, <class 'NoneType'> found.
1.
0.036 s
OK
Code: 07:25:05 UTC,
py,
verify,
result: Failed
Analysis
expand all
Example tests
1.
0.036 s
WRONG ANSWER,
got 2 expected 5
stdout:
[1, 1, 2, 3, 4, 6]
1.
0.036 s
RUNTIME ERROR,
tested program terminated with exit code 1
stderr:
Invalid result type, int expected, <class 'NoneType'> found.stdout:
[1, 2, 3]
1.
0.036 s
OK
Code: 07:36:09 UTC,
py,
verify,
result: Failed
Analysis
expand all
Example tests
1.
0.036 s
WRONG ANSWER,
got 1 expected 5
1.
0.036 s
WRONG ANSWER,
got 1 expected 4
1.
0.036 s
OK
Code: 07:37:11 UTC,
py,
verify,
result: Failed
Analysis
expand all
Example tests
1.
0.036 s
WRONG ANSWER,
got 1 expected 5
stdout:
1 1 1 2 2 1 3 3 2 4 4 3
1.
0.036 s
WRONG ANSWER,
got 1 expected 4
stdout:
1 2 1
1.
0.036 s
OK
Code: 07:37:30 UTC,
py,
autosave
Code: 07:37:32 UTC,
py,
verify,
result: Failed
Analysis
expand all
Example tests
1.
0.036 s
OK
stdout:
1 1 1 2 2 1 3 3 2 4 4 3 5 6 4
1.
0.036 s
WRONG ANSWER,
got 1 expected 4
stdout:
1 2 1 2 3 2
1.
0.036 s
OK
Code: 07:38:15 UTC,
py,
autosave
Code: 07:38:26 UTC,
py,
autosave
Code: 07:38:43 UTC,
py,
autosave
Code: 07:39:06 UTC,
py,
autosave
# you can write to stdout for debugging purposes, e.g.
# print("this is a debug message")
def solution(A):
A.sort()
# max value is smaller then 0
if A[-1] <= 0:
return 1
elif A[-1]
for i in range(1,len(A)):
print(i, A[i], A[i-1])
if A[i] > A[i-1]+1:
return A[i-1]+1
if A[-1]
return 1
Code: 07:39:17 UTC,
py,
autosave
# you can write to stdout for debugging purposes, e.g.
# print("this is a debug message")
def solution(A):
A.sort()
# max value is smaller then 0
if A[-1] <= 0:
return 1
elif A[0]
for i in range(1,len(A)):
print(i, A[i], A[i-1])
if A[i] > A[i-1]+1:
return A[i-1]+1
if A[-1]
return 1
Code: 07:39:46 UTC,
py,
autosave
# you can write to stdout for debugging purposes, e.g.
# print("this is a debug message")
def solution(A):
A.sort()
# max value is smaller than 0
if A[-1] <= 0:
return 1
# min value is bigger than 1
elif A[0] > 1:
return 1
for i in range(1,len(A)):
print(i, A[i], A[i-1])
if A[i] > A[i-1]+1:
return A[i-1]+1
if A[-1]
return 1
Code: 07:39:58 UTC,
py,
autosave
# you can write to stdout for debugging purposes, e.g.
# print("this is a debug message")
def solution(A):
A.sort()
# max value is smaller than 0
if A[-1] <= 0 or :
return 1
# min value is bigger than 1
elif A[0] > 1:
return 1
for i in range(1,len(A)):
print(i, A[i], A[i-1])
if A[i] > A[i-1]+1:
return A[i-1]+1
if A[-1]
return 1
Code: 07:40:09 UTC,
py,
autosave
# you can write to stdout for debugging purposes, e.g.
# print("this is a debug message")
def solution(A):
A.sort()
# max value is smaller than 0
# min value is bigger than 1
if A[-1] <= 0 or A[0] > 1:
return 1
for i in range(1,len(A)):
print(i, A[i], A[i-1])
if A[i] > A[i-1]+1:
return A[i-1]+1
if A[-1]
return 1
Code: 07:40:33 UTC,
py,
verify,
result: Passed
# you can write to stdout for debugging purposes, e.g.
# print("this is a debug message")
def solution(A):
A.sort()
# max value is smaller than 0
# min value is bigger than 1
if A[-1] <= 0 or A[0] > 1:
return 1
for i in range(1,len(A)):
print(i, A[i], A[i-1])
if A[i] > A[i-1]+1:
return A[i-1]+1
return A[-1]+1
Analysis
expand all
Example tests
1.
0.036 s
OK
stdout:
1 1 1 2 2 1 3 3 2 4 4 3 5 6 4
1.
0.036 s
OK
stdout:
1 2 1 2 3 2
1.
0.036 s
OK
Code: 07:40:40 UTC,
py,
verify,
result: Passed
# you can write to stdout for debugging purposes, e.g.
# print("this is a debug message")
def solution(A):
A.sort()
# max value is smaller than 0
# min value is bigger than 1
if A[-1] <= 0 or A[0] > 1:
return 1
for i in range(1,len(A)):
# print(i, A[i], A[i-1])
if A[i] > A[i-1]+1:
return A[i-1]+1
return A[-1]+1
Analysis
Code: 07:40:46 UTC,
py,
verify,
result: Passed
# you can write to stdout for debugging purposes, e.g.
# print("this is a debug message")
def solution(A):
A.sort()
# max value is smaller than 0
# min value is bigger than 1
if A[-1] <= 0 or A[0] > 1:
return 1
for i in range(1,len(A)):
# print(i, A[i], A[i-1])
if A[i] > A[i-1]+1:
return A[i-1]+1
return A[-1]+1
Analysis
Code: 07:40:48 UTC,
py,
final,
score: 
66
# you can write to stdout for debugging purposes, e.g.
# print("this is a debug message")
def solution(A):
A.sort()
# max value is smaller than 0
# min value is bigger than 1
if A[-1] <= 0 or A[0] > 1:
return 1
for i in range(1,len(A)):
# print(i, A[i], A[i-1])
if A[i] > A[i-1]+1:
return A[i-1]+1
return A[-1]+1
Analysis summary
The following issues have been detected: wrong answers.
For example, for the input [-1000000, 1000000] the solution returned a wrong answer (got -999999 expected 1).
Analysis
expand all
Correctness tests
1.
0.036 s
OK
2.
0.036 s
OK
3.
0.036 s
OK
4.
0.036 s
OK
1.
0.036 s
OK
2.
0.036 s
OK
3.
0.036 s
OK
1.
0.036 s
WRONG ANSWER,
got -999999 expected 1
2.
0.036 s
WRONG ANSWER,
got -999999 expected 6
1.
0.036 s
OK
2.
0.036 s
OK
1.
0.036 s
OK
expand all
Performance tests
1.
0.048 s
WRONG ANSWER,
got -965 expected 111
2.
0.048 s
OK
3.
0.048 s
WRONG ANSWER,
got -999939 expected 5
1.
0.144 s
OK
1.
0.184 s
OK
2.
0.172 s
OK
1.
0.148 s
WRONG ANSWER,
got 0 expected 10000