Below is the array of words I'm having
l = ['Australian Cricket Team',
'Cricket Team Australian',
'Won Against England',
'Against England Team']
And I want to make it That has only unique words. Below is how I want it to be after processing
['Australian', 'Cricket' ,'Team', 'Won', 'Against', 'England']
Simply I want to have unique set of words.