From dcbfe4c3d74a7b7efebac8f140b08ad40277f126 Mon Sep 17 00:00:00 2001 From: cfngc4594 Date: Mon, 3 Mar 2025 12:10:16 +0800 Subject: [PATCH] style(judge): align equal signs and comments for better readability --- src/config/judge.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/config/judge.ts b/src/config/judge.ts index 75caecc..cfc66bf 100644 --- a/src/config/judge.ts +++ b/src/config/judge.ts @@ -1,13 +1,13 @@ // Result type definitions export enum ExitCode { - SE = 0, // System Error - CS = 1, // Compilation Success - CE = 2, // Compilation Error - TLE = 3, // Time Limit Exceeded - MLE = 4, // Memory Limit Exceeded - RE = 5, // Runtime Error - AC = 6, // Accepted - WA = 7, // Wrong Answer + SE = 0, // System Error + CS = 1, // Compilation Success + CE = 2, // Compilation Error + TLE = 3, // Time Limit Exceeded + MLE = 4, // Memory Limit Exceeded + RE = 5, // Runtime Error + AC = 6, // Accepted + WA = 7, // Wrong Answer } export type JudgeResult = {