JSON Deep Equal — LeetCode 2628 Python Solution

MediumLeetCode PremiumJavaScript
Problem
#2628
Reading time
2 min

The problem

Given two values o1 and o2, return a boolean value indicating whether two values, o1 and o2, are deeply equal. For two values to be deeply equal, the following conditions must be met: If both values are primitive types, they are deeply equal if they pass the === equality check.

Example

Input
o1 = {"x":1,"y":2}, o2 = {"x":1,"y":2}
Output
true
Explanation
The keys and values match exactly.

Complexity

MeasureComplexity
TimeO(n)
SpaceO(1) to O(n) auxiliary

Related problems

Frequently asked questions

How hard is LeetCode 2628. JSON Deep Equal?
LeetCode 2628. JSON Deep Equal is rated Medium on LeetCode.
What topics does LeetCode 2628. JSON Deep Equal cover?
LeetCode 2628. JSON Deep Equal is tagged JavaScript on LeetCode.
Is LeetCode 2628. JSON Deep Equal a premium problem?
Yes. LeetCode 2628. JSON Deep Equal is a LeetCode Premium problem, so the full statement and test cases require a paid LeetCode subscription.

Stuck on problems like this in a live interview?

Stealth Interview is a desktop app for macOS and Windows. It reads the problem off your screen and returns a working solution with a step-by-step explanation and its time and space complexity — invisible to screen sharing.

Get Stealth Interview