Skip to content

Commit a1ae840

Browse files
authored
Improved task 2637
1 parent 5ce80df commit a1ae840

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/kotlin/g2601_2700/s2637_promise_time_limit/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
2637\. Promise Time Limit
22

3-
Easy
3+
Medium
44

55
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.
66

src/main/kotlin/g2601_2700/s2637_promise_time_limit/solution.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// #Easy #2023_07_17_Time_64_ms_(75.36%)_Space_43.5_MB_(5.78%)
1+
// #Medium #2023_07_17_Time_64_ms_(75.36%)_Space_43.5_MB_(5.78%)
22

33
type Fn = (...params: any[]) => Promise<any>
44

0 commit comments

Comments
 (0)