Answers for "fastest way to check if two string are anagram"

2

check if two strings are anagrams python

if sorted(s1) == sorted(s2): 
	print("The strings are anagrams.") 
else: 
	print("The strings aren't anagrams.")
Posted by: Guest on April-07-2020

Code answers related to "fastest way to check if two string are anagram"

Python Answers by Framework

Browse Popular Code Answers by Language