Skip to content

Commit

Permalink
[verdict] Add missing verdict abbreviations for NO-OUTPUT and OUTPUT-…
Browse files Browse the repository at this point in the history
…LIMIT
  • Loading branch information
mpsijm committed Nov 23, 2024
1 parent d6db0fc commit 8f48f84
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bin/verdicts.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,10 @@ def from_string(s: str) -> Verdict:
return Verdict.TIME_LIMIT_EXCEEDED
case 'RUN-ERROR' | 'RUN_TIME_ERROR' | 'RUNTIME_ERROR' | 'RTE':
return Verdict.RUNTIME_ERROR
case 'NO-OUTPUT':
case 'NO-OUTPUT' | 'NO':
return Verdict.WRONG_ANSWER
case 'OUTPUT-LIMIT' | 'OLE':
return Verdict.RUNTIME_ERROR
case 'COMPILER-ERROR' | 'CE':
return Verdict.COMPILER_ERROR
case 'CHECK-MANUALLY':
Expand Down

0 comments on commit 8f48f84

Please sign in to comment.