(contest: string)
| 14 | } |
| 15 | |
| 16 | static getContestURL(contest: string) { |
| 17 | return `${AtCoder.base_url}contests/${contest}`; |
| 18 | } |
| 19 | |
| 20 | static getTaskURL(contest: string, task?: string) { |
| 21 | return `${AtCoder.getContestURL(contest)}/tasks${task === undefined ? "" : `/${task}`}`; |
no outgoing calls
no test coverage detected