diff --git a/strings/check_anagram.py b/strings/check_anagram.py new file mode 100644 index 000000000000..c99dbb09977f --- /dev/null +++ b/strings/check_anagram.py @@ -0,0 +1,21 @@ +str1 = "Race" +str2 = "Care" + +# convert both the strings into lowercase +str1 = str1.lower() +str2 = str2.lower() + +# check if length is same +if len(str1) == len(str2): + # sort the strings + sorted_str1 = sorted(str1) + sorted_str2 = sorted(str2) + + # if sorted char arrays are same + if sorted_str1 == sorted_str2: + print(str1 + " and " + str2 + " are anagram.") + else: + print(str1 + " and " + str2 + " are not anagram.") + +else: + print(str1 + " and " + str2 + " are not anagram.")