We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9a1dbe commit 9fc6273Copy full SHA for 9fc6273
atcoder-problems-frontend/src/pages/TablePage/AtCoderRegularTable.tsx
@@ -40,8 +40,12 @@ interface Props {
40
const getProblemHeaderAlphabet = (problem: MergedProblem, contest: Contest) => {
41
const list = problem.title.split(".");
42
if (list.length === 0) return "";
43
- if (list[0] === "H" && classifyContest(contest).startsWith("ABC"))
44
- return "Ex";
+ console.log(list);
+ if (
45
+ (list[0] === "H" || list[0] === "Ex") &&
46
+ classifyContest(contest).startsWith("ABC")
47
+ )
48
+ return "H/Ex";
49
return list[0];
50
};
51
0 commit comments