Delay the Resolution of Each Promise — LeetCode 2821 Python Solution

MediumLeetCode PremiumJavaScript
Problem
#2821
Reading time
2 min

The problem

Given an array functions and a number ms, return a new array of functions. functions is an array of functions that return promises.

Example

Input
functions = [
Output
[80]
Explanation
The promise from the array would have resolved after 30 ms, but it was delayed by 50 ms, thus 30 ms + 50 ms = 80 ms.

Complexity

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

Related problems

Frequently asked questions

How hard is LeetCode 2821. Delay the Resolution of Each Promise?
LeetCode 2821. Delay the Resolution of Each Promise is rated Medium on LeetCode.
What topics does LeetCode 2821. Delay the Resolution of Each Promise cover?
LeetCode 2821. Delay the Resolution of Each Promise is tagged JavaScript on LeetCode.
Is LeetCode 2821. Delay the Resolution of Each Promise a premium problem?
Yes. LeetCode 2821. Delay the Resolution of Each Promise is a LeetCode Premium problem, so the full statement and test cases require a paid LeetCode subscription.

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