0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Codewars 7 kyu Anagram Detection

Posted at

Codewars 7 kyu Anagram Detection

Task

Complete the function to return true if the two arguments given are anagrams of each other; return false otherwise.

Verbalization

Make all capital letter to small letter
Change alphabetical order
If equal the result of 2. Return true, if not return false.

Code

# write the function is_anagram
def is_anagram(test, original):
    test = sorted(test.lower())
    original = sorted(original.lower())
    if test == original:
        return True
    else:
        return False

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?