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 c7689b2 commit 2a0323eCopy full SHA for 2a0323e
atcoder-problems-frontend/src/components/ProblemLink.tsx
@@ -51,7 +51,8 @@ export const ProblemLink: React.FC<Props> = (props) => {
51
if (
52
!showDifficulty ||
53
problemModel === undefined ||
54
- (difficulty === undefined && !showDifficultyUnavailable)
+ (difficulty === undefined && !showDifficultyUnavailable) ||
55
+ /^ahc\d{3}$/g.test(contestId)
56
) {
57
return link;
58
}
0 commit comments