pyassistant

Unique Character Strings

Write a function that takes a list of strings as input and returns a new list with only the strings that have unique characters (no character repeated).

Example:

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

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.