#BackCoding
Two strings are said to be anagram if we can form one string by arranging the characters of another string. For example, Race and Care. Here, we can form Race by arranging the characters of Care.
We first convert the strings to lowercase. It is because Python is case sensitive (i.e. R and r are two different characters in Python).
#programming
#dcoder
#shorts
#python