• It works in my computer

Question related to mission Non-unique Elements

  I would like to give some feedback about ...

From: http://www.checkio.org/mission/non-unique-elements/solve/

HTTP\_USER\_AGENT:

    Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36

My Code:

    #Your optional code here
    #You can import some modules or create additional functions
    
    
    def checkio(data):
        lst=[]
        for item in data:
            if data.count(item)>1:
                lst.append(item)
        print lst
    
    #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 isinstance(checkio([1]), list), "The result must be a list"
        assert checkio([1, 2, 3, 1, 3]) == [1, 3, 1, 3], "1st example"
        assert checkio([1, 2, 3, 4, 5]) == [], "2nd example"
        assert checkio([5, 5, 5, 5, 5]) == [5, 5, 5, 5, 5], "3rd example"
        assert checkio([10, 9, 10, 10, 9, 8]) == [10, 9, 10, 10, 9], "4th example"