-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcontest_name_labels.ts
More file actions
73 lines (64 loc) · 1.7 KB
/
contest_name_labels.ts
File metadata and controls
73 lines (64 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import { createTestCase } from '../../common/test_helpers';
export type TestCaseForContestNameLabel = {
contestId: string;
expected: string;
};
const createTestCaseForContestNameLabel = createTestCase<TestCaseForContestNameLabel>;
export const edpc = [
createTestCaseForContestNameLabel('DP')({
contestId: 'dp',
expected: 'EDPC',
}),
];
export const tdpc = [
createTestCaseForContestNameLabel('TDPC')({
contestId: 'tdpc',
expected: 'TDPC',
}),
];
export const aclPractice = [
createTestCaseForContestNameLabel('ACL Practice')({
contestId: 'practice2',
expected: 'ACL Practice',
}),
];
export const atCoderOthers = [
createTestCaseForContestNameLabel('Chokudai SpeedRun 001')({
contestId: 'chokudai_S001',
expected: 'Chokudai SpeedRun 001',
}),
createTestCaseForContestNameLabel('Chokudai SpeedRun 002')({
contestId: 'chokudai_S002',
expected: 'Chokudai SpeedRun 002',
}),
createTestCaseForContestNameLabel('AtCoder Typical Contest 001')({
contestId: 'atc001',
expected: 'ATC 001',
}),
];
export const mathAndAlgorithm = [
createTestCaseForContestNameLabel('Math and Algorithm')({
contestId: 'math-and-algorithm',
expected: 'アルゴリズムと数学',
}),
];
export const awc = [
createTestCaseForContestNameLabel('AWC 0001')({
contestId: 'awc0001',
expected: 'AWC 0001',
}),
createTestCaseForContestNameLabel('AWC 0002')({
contestId: 'awc0002',
expected: 'AWC 0002',
}),
createTestCaseForContestNameLabel('AWC 9999')({
contestId: 'awc9999',
expected: 'AWC 9999',
}),
];
export const fps24 = [
createTestCaseForContestNameLabel('FPS 24')({
contestId: 'fps-24',
expected: 'FPS 24 題',
}),
];