Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Check Whether Two Strings Are Anagrams

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

Your question is Check Whether Two Strings Are Anagrams. 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 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
  • Return a boolean result

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