Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

FizzBuzz and Anagrams Coding

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

Your question is FizzBuzz and Anagrams Coding. 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

Iowa State University utilities may need small text and sequence helpers. Implement one function that generates FizzBuzz output and checks whether two terms are anagrams.

For integers from 1 through n, return "Fizz" for multiples of 3, "Buzz" for multiples of 5, "FizzBuzz" for multiples of both, and the number as a string otherwise. Also compare first and second case-insensitively, ignoring spaces and punctuation. Return whether they contain the same letters and digits with the same frequencies.

Formal Specification

Implement fizz_buzz_and_are_anagrams(n, first, second). The input is a positive integer n and two strings. Return a dictionary with a fizzbuzz list of strings and an anagrams Boolean.

Constraints

  • 1 <= n <= 10^5
  • 0 <= len(first), len(second) <= 10^5
  • Comparisons are case-insensitive
  • Spaces and punctuation are ignored for anagram checks

Function Signature

def fizz_buzz_and_are_anagrams(n, first, second):
Your solutionPython 3
You need to log in / sign up to run or submit.
Run your code to see test output