Curry — LeetCode 2632 Python Solution
MediumLeetCode PremiumJavaScript
- Problem
- #2632
- Reading time
- 2 min
- Source
- leetcode.com
The problem
Given a function fn, return a curried version of that function. A curried function is a function that accepts fewer or an equal number of parameters as the original function and returns either another curried function or the same value the original function would have returned.
Example
- Input
- fn = function sum(a, b, c) { return a + b + c; }
- Output
- 6
- Explanation
- The code being executed is:
Complexity
| Measure | Complexity |
|---|---|
| Time | O(n) |
| Space | O(1) to O(n) auxiliary |
Related problems
Frequently asked questions
- How hard is LeetCode 2632. Curry?
- LeetCode 2632. Curry is rated Medium on LeetCode.
- What topics does LeetCode 2632. Curry cover?
- LeetCode 2632. Curry is tagged JavaScript on LeetCode.
- Is LeetCode 2632. Curry a premium problem?
- Yes. LeetCode 2632. Curry is a LeetCode Premium problem, so the full statement and test cases require a paid LeetCode subscription.