Problem
Ask
Submissions

Problem: Valid Anagram

Easy
15 min
Understand how to verify if one string is an anagram of another by tracking and comparing the frequency of letters. This lesson guides you through the problem definition, constraints, and practical implementation to solve common permutation and anagram challenges.

Statement

Given two strings, str1 and str2, check whether str2 is an anagram of str1.

An anagram is a word or phrase created by rearranging the letters of another word or phrase while utilizing each of the original letters exactly once.

Constraints:

  • 11 \leq str1.length, str2.length 103\leq 10^3

  • str1 and str2 consist of only lowercase English letters.

Problem
Ask
Submissions

Problem: Valid Anagram

Easy
15 min
Understand how to verify if one string is an anagram of another by tracking and comparing the frequency of letters. This lesson guides you through the problem definition, constraints, and practical implementation to solve common permutation and anagram challenges.

Statement

Given two strings, str1 and str2, check whether str2 is an anagram of str1.

An anagram is a word or phrase created by rearranging the letters of another word or phrase while utilizing each of the original letters exactly once.

Constraints:

  • 11 \leq str1.length, str2.length 103\leq 10^3

  • str1 and str2 consist of only lowercase English letters.