Spaces:
Running
Running
databoysu commited on
Commit ·
92da498
1
Parent(s): 8f0fc49
I am getting frustrated, i cannot proceed until i fix this goddamn obscure schema check
Browse files- openenv.yaml +9 -24
openenv.yaml
CHANGED
|
@@ -5,33 +5,18 @@ runtime: fastapi
|
|
| 5 |
app: server.app:app
|
| 6 |
port: 7860
|
| 7 |
tasks:
|
| 8 |
-
|
| 9 |
-
id: valid_parentheses_wrong_mapping
|
| 10 |
name: valid_parentheses_wrong_mapping
|
| 11 |
-
|
| 12 |
-
enabled: true
|
| 13 |
difficulty: easy
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
enabled: true
|
| 17 |
-
entrypoint: task1_easy:grade
|
| 18 |
-
task2_medium:
|
| 19 |
-
id: binary_search_off_by_one
|
| 20 |
name: binary_search_off_by_one
|
| 21 |
-
|
| 22 |
-
enabled: true
|
| 23 |
difficulty: medium
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
enabled: true
|
| 27 |
-
entrypoint: task2_medium:grade
|
| 28 |
-
task3_hard:
|
| 29 |
-
id: reverse_string_returns_original
|
| 30 |
name: reverse_string_returns_original
|
| 31 |
-
|
| 32 |
-
enabled: true
|
| 33 |
difficulty: hard
|
| 34 |
-
|
| 35 |
-
grader:
|
| 36 |
-
enabled: true
|
| 37 |
-
entrypoint: task3_hard:grade
|
|
|
|
| 5 |
app: server.app:app
|
| 6 |
port: 7860
|
| 7 |
tasks:
|
| 8 |
+
- id: task1_easy
|
|
|
|
| 9 |
name: valid_parentheses_wrong_mapping
|
| 10 |
+
description: "Debug the is_valid function so it passes all tests."
|
|
|
|
| 11 |
difficulty: easy
|
| 12 |
+
grader: task1_easy:grade
|
| 13 |
+
- id: task2_medium
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
name: binary_search_off_by_one
|
| 15 |
+
description: "Debug the binary_search function so it passes all tests."
|
|
|
|
| 16 |
difficulty: medium
|
| 17 |
+
grader: task2_medium:grade
|
| 18 |
+
- id: task3_hard
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
name: reverse_string_returns_original
|
| 20 |
+
description: "Debug the reverse_string function so it passes all tests."
|
|
|
|
| 21 |
difficulty: hard
|
| 22 |
+
grader: task3_hard:grade
|
|
|
|
|
|
|
|
|