Given a list of strings, return a new list containing only the strings that have unique characters (no repeated characters).
['hello', 'world', 'python', 'java']
['world', 'python', 'java']
Bot