We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
現状、genコマンドにおけるコンテストの指定にはコンテストIDを使っています。 ですがコンテストIDを手打ちするのは微妙に面倒ですし、ブラウザなどから雑にコピペしたい時にはURLの方が便利かもしれません。
URLを受け取った時には内部でURLからコンテストIDを取り出すなどしてはどうでしょうか? 正規表現やライブラリを使ってURLの解析をしてもいいですし、 以下のように簡易的にやるのもいいと思います。
# url = "https://atcoder.jp/contests/abc243" paths = url.split("/") contest_id = paths[4] if len(paths) >= 5 else paths[0] print(contest_id) # abc243
The text was updated successfully, but these errors were encountered:
No branches or pull requests
現状、genコマンドにおけるコンテストの指定にはコンテストIDを使っています。
ですがコンテストIDを手打ちするのは微妙に面倒ですし、ブラウザなどから雑にコピペしたい時にはURLの方が便利かもしれません。
URLを受け取った時には内部でURLからコンテストIDを取り出すなどしてはどうでしょうか?
正規表現やライブラリを使ってURLの解析をしてもいいですし、
以下のように簡易的にやるのもいいと思います。
The text was updated successfully, but these errors were encountered: