mirror of
https://github.com/massbug/judge4c.git
synced 2025-05-18 15:26:33 +00:00
style(judge): align equal signs and comments for better readability
This commit is contained in:
parent
eab8743095
commit
dcbfe4c3d7
@ -1,13 +1,13 @@
|
|||||||
// Result type definitions
|
// Result type definitions
|
||||||
export enum ExitCode {
|
export enum ExitCode {
|
||||||
SE = 0, // System Error
|
SE = 0, // System Error
|
||||||
CS = 1, // Compilation Success
|
CS = 1, // Compilation Success
|
||||||
CE = 2, // Compilation Error
|
CE = 2, // Compilation Error
|
||||||
TLE = 3, // Time Limit Exceeded
|
TLE = 3, // Time Limit Exceeded
|
||||||
MLE = 4, // Memory Limit Exceeded
|
MLE = 4, // Memory Limit Exceeded
|
||||||
RE = 5, // Runtime Error
|
RE = 5, // Runtime Error
|
||||||
AC = 6, // Accepted
|
AC = 6, // Accepted
|
||||||
WA = 7, // Wrong Answer
|
WA = 7, // Wrong Answer
|
||||||
}
|
}
|
||||||
|
|
||||||
export type JudgeResult = {
|
export type JudgeResult = {
|
||||||
|
Loading…
Reference in New Issue
Block a user