Say I have list of 5 words
my_list = ['python', 'apple', 'always', 'sky', 'lie']
How can I use a function to scan each word individually and delete any word that has the same letter occur more than once?
So after the function runs, the list should only contain
my_list = ['python', 'sky', 'lie']