Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Non-unique Elements by TovarischZhukov
def checkio(lstInput):
return [elem for i, elem in enumerate(lstInput) if elem in lstInput[:i] + lstInput[i + 1:]]
Dec. 2, 2015