Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

gcd python

import math
#math.gcd(*integers)

math.gcd(3, 9)
math.gcd(2, 3, 9)
math.gcd(2, 3, 4, 12, ...)
Source by docs.python.org #
 
PREVIOUS NEXT
Tagged: #gcd #python
ADD COMMENT
Topic
Name
6+8 =