Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Deep Equality for Objects

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

Your question is Deep Equality for Objects. 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

PayPay India services may exchange nested JSON-like payloads representing payment requests or responses. Implement a function that determines whether two such values are deeply equal.

Two values are deeply equal when they have the same structure and equivalent contents at every nesting level. Dictionary key order does not matter, but list order does. Values with different types are not equal, so True must not equal 1.

Formal Specification

Implement deep_equal(a, b):

  • a and b are JSON-compatible values: None, booleans, numbers, strings, lists, or dictionaries with string keys.
  • Numbers may be integers or floating-point values, excluding NaN.
  • Return True if the values are deeply equal, otherwise return False.
  • The input contains no cyclic references.

Constraints

  • 1 <= total number of nested values <= 10^5
  • Maximum nesting depth is 1000
  • Dictionary keys are unique strings
  • There are no cyclic references
  • Numbers exclude NaN

Function Signature

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