본문 바로가기
프로그래밍 문제/[Python] CheckIO

[CheckIO] non unique elements

by UltraLowTemp-Physics 2020. 12. 22.
728x90

Problem: py.checkio.org/en/mission/non-unique-elements/

My solution

#Your optional code here
#You can import some modules or create additional functions


def checkio(data: list) -> list:
    #Your code here
    #It's main function. Don't remove this function
    #It's used for auto-testing and must return a result for check.  

    #replace this for solution
    for number in data[::-1]:
        if data.count(number) == 1:
            del data[data.index(number)] 
    
    return data

#Some hints
#You can use list.count(element) method for counting.
#Create new list with non-unique elements
#Loop over original list


if __name__ == "__main__":
    #These "asserts" using only for self-checking and not necessary for auto-testing
    assert list(checkio([1, 2, 3, 1, 3])) == [1, 3, 1, 3], "1st example"
    assert list(checkio([1, 2, 3, 4, 5])) == [], "2nd example"
    assert list(checkio([5, 5, 5, 5, 5])) == [5, 5, 5, 5, 5], "3rd example"
    assert list(checkio([10, 9, 10, 10, 9, 8])) == [10, 9, 10, 10, 9], "4th example"
    print("It is all good. Let's check it now")
728x90

'프로그래밍 문제 > [Python] CheckIO' 카테고리의 다른 글

[CheckIO] Second Index  (0) 2020.12.24
[CheckIO] Popular words  (0) 2020.12.23
CheckIO - Between Markers  (0) 2020.12.21
CheckIO - Bigger price  (0) 2020.12.20
CheckIO - Count digits  (0) 2020.12.14

댓글