Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/lib/utils/contest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ const atCoderUniversityPrefixes = getContestPrefixes(ATCODER_UNIVERSITIES);
*/
const ATCODER_OTHERS: ContestPrefix = {
chokudai_S: 'Chokudai SpeedRun',
'code-festival-2014-qualb': 'Code Festival 2014 予選 B',
'code-festival-2014-final': 'Code Festival 2014 決勝',
'code-thanks-festival': 'CODE THANKS FESTIVAL',
donuts: 'Donutsプロコンチャレンジ',
Expand Down
4 changes: 4 additions & 0 deletions src/test/lib/utils/test_cases/contest_type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,10 @@ export const atCoderOthers = [
contestId: 'chokudai_S002',
expected: ContestType.OTHERS,
}),
createTestCaseForContestType('CODE FESTIVAL 2014 qual B')({
contestId: 'code-festival-2014-qualb',
expected: ContestType.OTHERS,
}),
createTestCaseForContestType('CODE FESTIVAL 2014 final')({
contestId: 'code-festival-2014-final',
expected: ContestType.OTHERS,
Expand Down
Loading