2018. 11. 11. 15:02ㆍData Analysis/Python
문제
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] = 2
is a permutation, but array A such that:
A[0] = 4 A[1] = 1 A[2] = 3
is not a permutation, because value 2 is missing.
The goal is to check whether array A is a permutation.
Write a function:
def solution(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] = 2
the function should return 1.
Given array A such that:
A[0] = 4 A[1] = 1 A[2] = 3
the 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].
풀이
처음엔 이렇게 풀었는데요. 아무래도 single value를 신경 안 써줬더니 오류가 나더라구요. 66점이 나와서 아래처럼 다시 풀었습니다.
리스트 A에 값이 1개면 어떻게 return값을 줄건지 설정하고, 아래 코드는 위와 동일합니다. 이렇게 해도 88점밖에 안 나오네요. 간단한 문제라 시간이 없어 넘어가지만, 시간이 되면 다시 한 번 고쳐보고 싶습니다. 그나저나 코드 삽입할 수 있도록 설정해야되는데 번거로워서 그냥 캡쳐로 붙여넣고 있네요 ㅋㅋ
'Data Analysis > Python' 카테고리의 다른 글
[번역] 넷플릭스에서의 파이썬 (0) | 2019.12.09 |
---|---|
Codility: OddOccurrencesInArray (0) | 2018.11.11 |
Codililty: CyclicRotation (0) | 2018.11.10 |