pyassistant

Anagram Words

Given a list of words, write a function to return the list of words that have the same letters but are not anagrams of each other.

Example:

Input:
['listen', 'silent', 'hello', 'hi', 'evil', 'vile']
Output:
['listen', 'silent', 'evil', 'vile']

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.