We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f20216 commit 95b8e8aCopy full SHA for 95b8e8a
judge.py
@@ -53,11 +53,12 @@ def readStatus(token):
53
print(status)
54
55
if status == "Accepted":
56
- print(f'Output : \n{response["stdout"]}')
+ #print(f'Output : \n{response["stdout"]}')
57
+ print(f'Time : {response["time"]}')
58
print("Compile Success ✅")
59
return status
60
else:
- return response
61
+ return response['status']['description']
62
63
def submit(program, language_id, *argv):
64
if len(argv) == 2:
0 commit comments