Sleep — LeetCode 2621 Python Solution
EasyJavaScript
- Problem
- #2621
- Reading time
- 2 min
- Source
- leetcode.com
The problem
Given a positive integer millis, write an asynchronous function that sleeps for millis milliseconds. It can resolve any value.
Example
- Input
- millis = 100
- Output
- 100
- Explanation
- It should return a promise that resolves after 100ms.
Complexity
| Measure | Complexity |
|---|---|
| Time | O(n) |
| Space | O(1) to O(n) auxiliary |
Related problems
Frequently asked questions
- How hard is LeetCode 2621. Sleep?
- LeetCode 2621. Sleep is rated Easy on LeetCode.
- What topics does LeetCode 2621. Sleep cover?
- LeetCode 2621. Sleep is tagged JavaScript on LeetCode.