728x90
1.문제
app.codility.com/demo/results/training3ZHYPZ-UUU/
2.풀이
주어진 배열이 permutation이면 1, 아니면 0을 반환하는 문제
앞서 missingInteger문제와 아주 비슷했다.
3.코드
# you can write to stdout for debugging purposes, e.g.
# print("this is a debug message")
def solution(A):
A.sort()
pivot = 1
answer = 1
for i in A:
if i == pivot:
pivot +=1
else:
answer = 0
break
return answer
728x90
'코딩 테스트' 카테고리의 다른 글
[Codility] Lesson5.MinAvgTwoSlice (Python) (0) | 2021.05.11 |
---|---|
[Codility] Lesson5.Genomicrangequery (Python) (0) | 2021.05.11 |
[Codility] Lesson4. MissingInteger (Python) (0) | 2021.05.09 |
[Codility] Lesson4. Max Counters (Python) (0) | 2021.05.09 |
[프로그래머스] 호텔방배정 (C++) (0) | 2021.04.19 |
댓글