We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6335c8a commit 73df731Copy full SHA for 73df731
src/lib/oj/atcoder.ts
@@ -10,7 +10,7 @@ export const at: oj = {
10
const response = await axios.get("https://atcoder.jp/contests");
11
const $ = cheerio.load(response.data);
12
const contests: contest[] = [];
13
- $("#contest-table-upcoming,#contest-table-action table > tbody > tr").each(function ()
+ $("table > tbody > tr", "#contest-table-action, #contest-table-upcoming").each(function ()
14
{
15
const ct: contest = {
16
ojName: at.name,
0 commit comments