Delay the Resolution of Each Promise — LeetCode 2821 Python Solution
MediumLeetCode PremiumJavaScript
- Problem
- #2821
- Reading time
- 2 min
- Source
- leetcode.com
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
| Measure | Complexity |
|---|---|
| Time | O(n) |
| Space | O(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.