

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Valid Anagram in Python
Anagrams are basically all permutations of a given string or pattern. This pattern searching algorithm is slightly different. In this case, not only the exact pattern is searched, it searches all possible arrangements of the given pattern in the text. So if the inputs are “ANAGRAM” and “NAAGARM”, then they are anagram, but “cat” and “fat” are not an anagram
To solve this, we will convert the string into a list of characters, then sort them, if two sorted lists are same then they are anagram.
Example (Python)
Let us see the following implementation to get a better understanding −
class Solution(object): def isAnagram(self, s, t): """ :type s: str :type t: str :rtype: bool """ return "".join(sorted(s)) == "".join(sorted(t)) ob1 = Solution() print(ob1.isAnagram("ANAGRAM","NAAGARM"))
Input
s = "ANAGRAM" t = "NAAGARM"
Output
true
- Related Questions & Answers
- Anagram Substring Search using Python
- Anagram checking in Python using collections.Counter()
- An Anagram I Am in Python
- Valid Palindrome in Python
- Valid Sudoku in Python
- Valid Number in Python
- Anagram checking in Python program using collections.Counter()
- Python Program for Anagram Substring Search
- Longest Valid Parentheses in Python
- Valid Mountain Array in Python
- Anagram Pattern Search
- What are valid python identifiers?
- Program to find length of longest anagram subsequence in Python
- Minimum Add to Make Parentheses Valid in Python
- Check whether two strings are anagram of each other in Python
Advertisements