Allow One Function Call — LeetCode 2666 Python Solution

EasyJavaScript
Problem
#2666
Reading time
2 min

The problem

Given a function fn, return a new function that is identical to the original function except that it ensures fn is called at most once. The first time the returned function is called, it should return the same result as fn.

Example

Input
fn = (a,b,c) => (a + b + c), calls = [[1,2,3],[2,3,6]]
Output
[{"calls":1,"value":6}]
Explanation
const onceFn = once(fn);

Complexity

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

Related problems

Frequently asked questions

How hard is LeetCode 2666. Allow One Function Call?
LeetCode 2666. Allow One Function Call is rated Easy on LeetCode.
What topics does LeetCode 2666. Allow One Function Call cover?
LeetCode 2666. Allow One Function Call 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