Is Object Empty — LeetCode 2727 Python Solution

EasyJavaScript
Problem
#2727
Reading time
2 min

The problem

Given an object or an array, return if it is empty. An empty object contains no key-value pairs.

Example

Input
obj = {"x": 5, "y": 42}
Output
false
Explanation
The object has 2 key-value pairs so it is not empty.

Complexity

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

Related problems

Frequently asked questions

How hard is LeetCode 2727. Is Object Empty?
LeetCode 2727. Is Object Empty is rated Easy on LeetCode.
What topics does LeetCode 2727. Is Object Empty cover?
LeetCode 2727. Is Object Empty is tagged JavaScript on LeetCode.

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