Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Valid Anagram String Check

EasyPython00:00
Practice interviewer
In session
5 left
00:00

Your question is Valid Anagram String Check. Start with the requirements on the right.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.

Problem

Given two strings s and t, return true if t is an anagram of s, and false otherwise. Two strings are anagrams if they contain exactly the same characters with the same frequencies, possibly in a different order.

Constraints

  • 1 <= len(s), len(t) <= 5 * 10^4
  • s and t consist of lowercase English letters
  • Repeated characters must be matched by frequency

Function Signature

def is_anagram(s, t):
Your solutionPython 3
You need to log in / sign up to run or submit.
Run your code to see test output