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