-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmin-missing-correct.py
52 lines (47 loc) · 1.19 KB
/
min-missing-correct.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Thu Feb 20 16:21:46 2020
@author: artemponomarev
"""
def solution(A):
# write your code in Python 3.6
"""
Task description is given on Codility website, https://app.codility.com/programmers/
minimal positive missing array member
"""
N = len(A)
if not (N >= 1 and N <= 1e5):
return -1
if not (min(A) >= -1e6 and max(A) <= 1e6):
return 1
if N == 0:
return -1
if N == 1:
if A[0] <= 0:
return 1
else:
if A[0] > 1:
return 1
else:
return A[0]+1
if max(A) <= 0:
return 1
if min(A) > 1:
return 1
A.sort()
for i in range(N):
if i == 0:
if A[i] > 1:
return 1
else:
if A[i] != A[i-1]:
if A[i] != A[i-1]+1:
if A[i-1]+1 > 0:
if A[i-1]+1 > 1:
return A[i-1]+1
else:
if A[i] > 1:
return 1
return A[N-1]+1
print("solution = ", solution([0, 1, 2, 3, 4, 7, 9, 12]))