Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Python Anagram and Kwargs

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

Your question is Python Anagram and Kwargs. 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

Tech Mahindra data-processing utilities may receive text with inconsistent capitalization or spacing. Implement a function that determines whether two strings are anagrams while supporting optional behavior through Python kwargs.

Two strings are anagrams when they contain the same character frequencies after applying the requested normalization rules.

Formal Specification

Implement are_anagrams(s, t, **kwargs):

  1. s and t are non-null strings.
  2. case_sensitive is an optional keyword argument. It defaults to False. When False, compare characters without regard to case.
  3. ignore_spaces is an optional keyword argument. It defaults to True. When True, ignore all whitespace characters, including spaces, tabs, and newlines.
  4. Return True if the normalized strings are anagrams; otherwise return False.
  5. In your explanation, define what **kwargs means, how it is represented inside the function, and why keyword arguments are useful here.

Constraints

  • 0 <= len(s), len(t) <= 10^5
  • Inputs contain Unicode characters
  • Only case_sensitive and ignore_spaces are supported options
  • Punctuation remains significant

Function Signature

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