Skip to content

Commit 658488a

Browse files
authored
Merge pull request #1954 from AtCoder-NoviSteps/#1952
✨ Add tasks for workbook (#1952)
2 parents 28aeb51 + 167653d commit 658488a

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

src/lib/utils/contest.ts

+2-1
Original file line numberDiff line numberDiff 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.
9797
const ABC_LIKE: ContestPrefix = {
9898
aising2020: 'エイシング プログラミング コンテスト 2020',
99+
hhkb2020: 'HHKB プログラミングコンテスト 2020',
99100
panasonic2020: 'パナソニックプログラミングコンテスト 2020',
100101
} as const;
101102
const abcLikePrefixes = new Set(getContestPrefixes(ABC_LIKE));

src/test/lib/utils/test_cases/contest_type.ts

+4
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)