File tree 2 files changed +6
-1
lines changed
test/lib/utils/test_cases
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -92,10 +92,11 @@ export const classifyContest = (contest_id: string) => {
92
92
return null ;
93
93
} ;
94
94
95
- // HACK: As of December 2024 , the following contests are applicable.
95
+ // HACK: As of April 2025 , the following contests are applicable.
96
96
// Note: The classification logic may need to be revised when new contests are added.
97
97
const ABC_LIKE : ContestPrefix = {
98
98
aising2020 : 'エイシング プログラミング コンテスト 2020' ,
99
+ hhkb2020 : 'HHKB プログラミングコンテスト 2020' ,
99
100
panasonic2020 : 'パナソニックプログラミングコンテスト 2020' ,
100
101
} as const ;
101
102
const abcLikePrefixes = new Set ( getContestPrefixes ( ABC_LIKE ) ) ;
Original file line number Diff line number Diff line change @@ -191,6 +191,10 @@ export const abcLike = [
191
191
contestId : 'aising2020' ,
192
192
expected : ContestType . ABC_LIKE ,
193
193
} ) ,
194
+ createTestCaseForContestType ( 'HHKB 2020' ) ( {
195
+ contestId : 'hhkb2020' ,
196
+ expected : ContestType . ABC_LIKE ,
197
+ } ) ,
194
198
createTestCaseForContestType ( 'Panasonic 2020' ) ( {
195
199
contestId : 'panasonic2020' ,
196
200
expected : ContestType . ABC_LIKE ,
You can’t perform that action at this time.
0 commit comments