Number Math Flashcards
1
Q
What is the greatest common divisor?
A
It’s the largest integer that can divide the set of numbers evenly.
There is an implementation in python under math module
math.gcd(0,12) = 12
What is the greatest common divisor?
It’s the largest integer that can divide the set of numbers evenly.
There is an implementation in python under math module
math.gcd(0,12) = 12