Skip to content

Commit b14c4f4

Browse files
committed
✨ Add tasks and tests (#2508)
1 parent 07cf0a2 commit b14c4f4

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
@@ -179,6 +179,7 @@ const ATCODER_OTHERS: ContestPrefix = {
179179
'dwacon2017-prelims': '第3回 ドワンゴからの挑戦状 予選',
180180
'mujin-pc-2016': 'Mujin Programming Challenge 2016',
181181
'mujin-pc-2018': 'Mujin Programming Challenge 2018',
182+
'tenka1-2015-quala': '天下一プログラマーコンテスト2015予選A',
182183
'tenka1-2016-final': '天下一プログラマーコンテスト2016本戦',
183184
// Discovery Channel contest featuring algorithm problems
184185
discovery2016: 'DISCO presents ディスカバリーチャンネル プログラミングコンテスト2016',

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -371,6 +371,10 @@ export const atCoderOthers = [
371371
contestId: 'mujin-pc-2018',
372372
expected: ContestType.OTHERS,
373373
}),
374+
createTestCaseForContestType('天下一プログラマーコンテスト2015予選A')({
375+
contestId: 'tenka1-2015-quala',
376+
expected: ContestType.OTHERS,
377+
}),
374378
createTestCaseForContestType('天下一プログラマーコンテスト2016本戦')({
375379
contestId: 'tenka1-2016-final',
376380
expected: ContestType.OTHERS,

0 commit comments

Comments
 (0)