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
min_value = 1e9 max_value = -1e9
에서
min_value = int(1e9) max_value = int(-1e9)
로 수정해야 정답 판정을 받을 수 있습니다.
The text was updated successfully, but these errors were encountered:
왜 그런지 알 수 있나요?
Sorry, something went wrong.
No branches or pull requests
min_value = 1e9
max_value = -1e9
에서
min_value = int(1e9)
max_value = int(-1e9)
로 수정해야 정답 판정을 받을 수 있습니다.
The text was updated successfully, but these errors were encountered: