pyassistant

Unique Character Strings

Given a list of strings, return a new list containing only the strings that have unique characters (no repeated characters).

Example:

Input:
['hello', 'world', 'python', 'java']
Output:
['world', 'python', 'java']

Make sure you return your solution, don't print!

AI

Bot

Trying to solve my challenge? Ask if you must, or press the purple button so I can analyze your code.