We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70ee140 commit a3db570Copy full SHA for a3db570
1 file changed
strings/anagrams.py
@@ -24,11 +24,11 @@ def signature(word: str) -> str:
24
25
def anagram(my_word: str) -> list[str]:
26
"""
27
-An anagram is a word or phrase formed by rearranging the letters of
28
-a different word or phrase, typically using all the original letters
29
-exactly once.
+ An anagram is a word or phrase formed by rearranging the letters of a
+ different word or phrase, typically using all the original letters exactly
+ once.
30
31
-Return every anagram of the given word from the dictionary.
+ Return every anagram of the given word from the dictionary.
32
>>> anagram('test')
33
['sett', 'stet', 'test']
34
>>> anagram('this is a test')
0 commit comments