Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
One line solution solution in Creative category for Non-unique Elements by bartosz_lyzwa
def checkio(data):
#I am discovering a power of maps, filters and lambdas, doing this in one line was my personal challange
return filter(lambda letterToCheck: data.count(letterToCheck)>1,data)
Oct. 16, 2017