Infinite Method Object — LeetCode 2690 Python Solution
EasyLeetCode PremiumJavaScript
- Problem
- #2690
- Reading time
- 2 min
- Source
- leetcode.com
The problem
Write a function that returns an infinite-method object. An infinite-method object is defined as an object that allows you to call any method and it will always return the name of the method.
Example
- Input
- method = "abc123"
- Output
- "abc123"
- Explanation
- const obj = createInfiniteObject();
Complexity
| Measure | Complexity |
|---|---|
| Time | O(n) |
| Space | O(1) to O(n) auxiliary |
Related problems
Frequently asked questions
- How hard is LeetCode 2690. Infinite Method Object?
- LeetCode 2690. Infinite Method Object is rated Easy on LeetCode.
- What topics does LeetCode 2690. Infinite Method Object cover?
- LeetCode 2690. Infinite Method Object is tagged JavaScript on LeetCode.
- Is LeetCode 2690. Infinite Method Object a premium problem?
- Yes. LeetCode 2690. Infinite Method Object is a LeetCode Premium problem, so the full statement and test cases require a paid LeetCode subscription.