JSON Deep Equal — LeetCode 2628 Python Solution
MediumLeetCode PremiumJavaScript
- Problem
- #2628
- Reading time
- 2 min
- Source
- leetcode.com
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
| Measure | Complexity |
|---|---|
| Time | O(n) |
| Space | O(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.