Skip to content

Commit 74a81c3

Browse files
authored
Merge pull request #1818 from AtCoder-NoviSteps/#1817
✨ Add tasks for stack (#1817)
2 parents 0cad02b + 7c51389 commit 74a81c3

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

src/lib/utils/contest.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,7 @@ const atCoderUniversityPrefixes = getContestPrefixes(ATCODER_UNIVERSITIES);
162162
*/
163163
const ATCODER_OTHERS: ContestPrefix = {
164164
chokudai_S: 'Chokudai SpeedRun',
165+
'code-festival-2014-qualb': 'Code Festival 2014 予選 B',
165166
'code-festival-2014-final': 'Code Festival 2014 決勝',
166167
'code-thanks-festival': 'CODE THANKS FESTIVAL',
167168
donuts: 'Donutsプロコンチャレンジ',

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,10 @@ export const atCoderOthers = [
295295
contestId: 'chokudai_S002',
296296
expected: ContestType.OTHERS,
297297
}),
298+
createTestCaseForContestType('CODE FESTIVAL 2014 qual B')({
299+
contestId: 'code-festival-2014-qualb',
300+
expected: ContestType.OTHERS,
301+
}),
298302
createTestCaseForContestType('CODE FESTIVAL 2014 final')({
299303
contestId: 'code-festival-2014-final',
300304
expected: ContestType.OTHERS,

0 commit comments

Comments
 (0)