Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Anagram Problem Solution

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

Your question is Anagram Problem Solution. 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

Beaconfiresolution needs to validate whether two strings represent the same character sequence in different orders. Given two strings s and t, determine whether t is an anagram of s.

Two strings are anagrams when they contain exactly the same characters with the same frequencies. Character order does not matter, but every occurrence must be matched. Return True if the strings are anagrams and False otherwise.

Formal Specification

Implement is_anagram(s, t).

  • Input: Two strings, s and t.
  • Output: A Boolean value. Return True when s and t contain identical character frequencies; otherwise return False.
  • Characters are lowercase English letters. Spaces and punctuation are treated as ordinary characters only if included by the input specification.

Constraints

  • 1 <= len(s), len(t) <= 10^6
  • s and t contain lowercase English letters only
  • Character order may differ
  • Every character occurrence must be counted

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