Promise Time Limit — LeetCode 2637 Python Solution

MediumJavaScript
Problem
#2637
Reading time
2 min

The problem

Given an asynchronous function fn and a time t in milliseconds, return a new time limited version of the input function. fn takes arguments provided to the time limited function.

Example

Input
fn = async (n) => {
Output
{"rejected":"Time Limit Exceeded","time":50}
Explanation
const limited = timeLimit(fn, t)

Complexity

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

Related problems

Frequently asked questions

How hard is LeetCode 2637. Promise Time Limit?
LeetCode 2637. Promise Time Limit is rated Medium on LeetCode.
What topics does LeetCode 2637. Promise Time Limit cover?
LeetCode 2637. Promise Time Limit 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