2666. Allow One Function Call
UnknownView on LeetCode
Advertisement
About this solution
Allow One Function Call is a unknown-difficulty LeetCode problem covering the JavaScript pattern. The TypeScript solution below uses an idiomatic approach that is clean, readable, and directly submittable on LeetCode. Study the logic carefully — recognising the underlying pattern is the key skill that transfers to similar problems in interviews.
Key Techniques
2666.ts
TypeScript
type JSONValue =
| null
| boolean
| number
| string
| JSONValue[]
| { [key: string]: JSONValue };
type OnceFn = (...args: JSONValue[]) => JSONValue | undefined;
function once(fn: Function): OnceFn {
let isCalled = false;
return function (...args) {
if (isCalled) {
return;
}
isCalled = true;
return fn(...args);
};
}
Advertisement
Was this solution helpful?