본문 바로가기

알고리즘&자료구조/Codility

[codility] PermMissingElem

Task description

An array A consisting of N different integers is given. The array contains integers in the range [1..(N + 1)], which means that exactly one element is missing.

Your goal is to find that missing element.

Write a function:

def solution(A)

that, given an array A, returns the value of the missing element.

For example, given array A such that:

A[0] = 2 A[1] = 3 A[2] = 1 A[3] = 5

the function should return 4, as it is the missing element.

Write an efficient algorithm for the following assumptions:

  • N is an integer within the range [0..100,000];
  • the elements of A are all distinct;
  • each element of array A is an integer within the range [1..(N + 1)].

Copyright 2009–2021 by Codility Limited. All Rights Reserved. Unauthorized copying, publication or disclosure prohibited.

 

# you can write to stdout for debugging purposes, e.g.
# print("this is a debug message")

def solution(A):
    # write your code in Python 3.6
    new_li = [num for num in range(1,len(A)+2)]
    ans = set(new_li) - set(A)
    return list(ans)[0]

'알고리즘&자료구조 > Codility' 카테고리의 다른 글

[codility] FrogRiverOne  (0) 2021.09.02
[codility] TapeEquilibrium  (0) 2021.09.02
[codility] FrogJmp  (0) 2021.09.01
[codility] OddOccurrencesInArray  (0) 2021.09.01
[codility] CyclicRotation  (0) 2021.09.01