Skip to content

Commit dfaa783

Browse files
authored
Merge pull request #1475 from AtCoder-NoviSteps/#1474
✨ Enable to import contests (#1474)
2 parents 822f971 + f8de5da commit dfaa783

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

src/lib/utils/contest.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,7 @@ const ATCODER_OTHERS: ContestPrefix = {
156156
colopl: 'COLOCON',
157157
gigacode: 'GigaCode',
158158
cpsco2019: 'CPSCO 2019',
159+
DEGwer2023: 'DEGwer さんの D 論応援コンテスト',
159160
} as const;
160161
const atCoderOthersPrefixes = getContestPrefixes(ATCODER_OTHERS);
161162

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -288,16 +288,16 @@ export const atCoderOthers = [
288288
contestId: 'gigacode-2019',
289289
expected: ContestType.OTHERS,
290290
}),
291-
createTestCaseForContestType('CPSCO2019 Session1')({
292-
contestId: 'cpsco2019-s1',
293-
expected: ContestType.OTHERS,
294-
}),
295291
...[1, 2, 3, 4].map((session) =>
296292
createTestCaseForContestType(`CPSCO2019 Session${session}`)({
297293
contestId: `cpsco2019-s${session}`,
298294
expected: ContestType.OTHERS,
299295
}),
300296
),
297+
createTestCaseForContestType('DEGwer さんの D 論応援コンテスト')({
298+
contestId: 'DEGwer2023',
299+
expected: ContestType.OTHERS,
300+
}),
301301
];
302302

303303
// See:

0 commit comments

Comments
 (0)