File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
test/lib/utils/test_cases Expand file tree Collapse file tree 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) => {
9292 return null ;
9393} ;
9494
95- // HACK: As of December 2024 , the following contests are applicable.
95+ // HACK: As of April 2025 , the following contests are applicable.
9696// Note: The classification logic may need to be revised when new contests are added.
9797const ABC_LIKE : ContestPrefix = {
9898 aising2020 : 'エイシング プログラミング コンテスト 2020' ,
99+ hhkb2020 : 'HHKB プログラミングコンテスト 2020' ,
99100 panasonic2020 : 'パナソニックプログラミングコンテスト 2020' ,
100101} as const ;
101102const abcLikePrefixes = new Set ( getContestPrefixes ( ABC_LIKE ) ) ;
Original file line number Diff line number Diff line change @@ -191,6 +191,10 @@ export const abcLike = [
191191 contestId : 'aising2020' ,
192192 expected : ContestType . ABC_LIKE ,
193193 } ) ,
194+ createTestCaseForContestType ( 'HHKB 2020' ) ( {
195+ contestId : 'hhkb2020' ,
196+ expected : ContestType . ABC_LIKE ,
197+ } ) ,
194198 createTestCaseForContestType ( 'Panasonic 2020' ) ( {
195199 contestId : 'panasonic2020' ,
196200 expected : ContestType . ABC_LIKE ,
You can’t perform that action at this time.
0 commit comments