-
-
Notifications
You must be signed in to change notification settings - Fork 46.5k
New issue
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
Chinese Remainder Theorem | Diophantine Equation | Modular Division #1248
Conversation
@cclauss Your review, please. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we put these into data_structures/hashes?
The overlap in the three open PRs is making reviews difficult. Let's close or land some of them.
# 2. Take n = ra*by + rb*ax | ||
|
||
# import testmod for testing our function | ||
from doctest import testmod |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's move this line down just below line 68...
We do not need this import when we run your functions, only when we test them.
return (n % m + m) % m | ||
|
||
|
||
if __name__ == '__main__': |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
from doctest import testmod
@@ -0,0 +1,70 @@ | |||
# Chinese Remainder Theorem: | |||
|
|||
# If GCD(a,b) = 1, then for any remainder ra modulo a and any remainder rb modulo b there exists integer n, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please expand the acronym GCD and try to keep the lines to 88 characters or less.
|
||
# This function find the inverses of a i.e., a^(-1) | ||
def invert_modulo(a, n): | ||
(b, x) = extended_euclid(a, n) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No doctest?
|
||
# Euclid's Algorithm | ||
|
||
def gcd(a, b): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please expand the acronym gcd
# Uses ExtendedEuclid to find the inverse of a | ||
|
||
# Import testmod for testing our function | ||
from doctest import testmod |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Move down to main()
OK...
|
…/hashing/number_theory
…/hashing/number_theory
Done.. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you!!
…heAlgorithms#1248) * Update .gitignore to remove __pycache__/ * added chinese_remainder_theorem * Added Diophantine_equation algorithm * Update Diophantine eqn & chinese remainder theorem * Update Diophantine eqn & chinese remainder theorem * added efficient modular division algorithm * added GCD function * update chinese_remainder_theorem | dipohantine eqn | modular_division * update chinese_remainder_theorem | dipohantine eqn | modular_division * added a new directory named blockchain & a files from data_structures/hashing/number_theory * added a new directory named blockchain & a files from data_structures/hashing/number_theory
No description provided.