Deep Object Filter — LeetCode 2823 Python Solution

MediumLeetCode PremiumJavaScript
Problem
#2823
Reading time
2 min

The problem

Given an object or an array obj and a function fn, return a filtered object or array filteredObject. Function deepFilter should perform a deep filter operation on the obj.

Example

Input
obj = [-5, -4, -3, -2, -1, 0, 1],
Output
[1]
Explanation
All values that were not greater than 0 were removed.

Complexity

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

Related problems

Frequently asked questions

How hard is LeetCode 2823. Deep Object Filter?
LeetCode 2823. Deep Object Filter is rated Medium on LeetCode.
What topics does LeetCode 2823. Deep Object Filter cover?
LeetCode 2823. Deep Object Filter is tagged JavaScript on LeetCode.
Is LeetCode 2823. Deep Object Filter a premium problem?
Yes. LeetCode 2823. Deep Object Filter 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