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
Results from running Python on repl.it, which I'm assuming reflect here:
pow(2,36,100000) => 69184L 2**36 % 100000 => 76736L
76736 is the correct result. Also:
pow(2,40,100000) => 127776
which is greater than the passed modulus; it should be 27776.
The text was updated successfully, but these errors were encountered:
FWIW, empython (a more up-to-date build of python with emscripten) computes both of these correctly.
Sorry, something went wrong.
No branches or pull requests
Results from running Python on repl.it, which I'm assuming reflect here:
76736 is the correct result. Also:
which is greater than the passed modulus; it should be 27776.
The text was updated successfully, but these errors were encountered: