summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrederick Yin <fred.yin@sjtu.edu.cn>2021-10-10 14:01:19 +0800
committerFrederick Yin <fred.yin@sjtu.edu.cn>2021-10-10 14:01:19 +0800
commit5674af430b4901cb1b3116fa7482585f243d11da (patch)
treedd00b6e6ac615d7dafb89d6d320498c525f17621
parentbabc1fc61ae91d3efe7269274ab08766b8795594 (diff)
Contain filenames in lists
-rw-r--r--leningrade.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/leningrade.py b/leningrade.py
index 2bd4547..167b3cf 100644
--- a/leningrade.py
+++ b/leningrade.py
@@ -23,11 +23,11 @@ JOJ_INFO = {
"homeworkID": JOJ_HOMEWORK_ID,
"lang": LANGUAGE,
"problemInfo": [
- # filename, problem ID, # of test cases
- ("ex2.m", "61553cffb3c06a0006f45da3", 10),
- ("ex4.m", "61553e5fb3c06a0006f45da9", 10),
- ("ex5.m", "61553f8cb3c06a0006f45db2", 10),
- ("ex6.m", "6155414cb3c06a0006f45dc7", 10),
+ # filenames, problem ID, # of test cases
+ (["ex2.m"], "61553cffb3c06a0006f45da3", 10),
+ (["ex4.m"], "61553e5fb3c06a0006f45da9", 10),
+ (["ex5.m"], "61553f8cb3c06a0006f45db2", 10),
+ (["ex6.m"], "6155414cb3c06a0006f45dc7", 10),
],
}