Intermediate Python Lesson 2: Solution: Finding Anagrams
My Solution
yt link
Solution
Using what we've seen so far, this exercise can be accomplished with the following code:
def find_anagrams(letters, words):
# Create a dictionary mapping the canonical representation of a word to all anagrams of those...
philipdevblog.hashnode.dev1 min read