This website works better with JavaScript
Domů
Procházet
Nápověda
Přihlásit se
taddeus
/
projecteuler
Sledovat
1
Oblíbit
0
Rozštěpit
0
Soubory
Úkoly
0
Pull Requesty
0
Wiki
Strom:
4a07d490c1
Větve
Značky
master
projecteuler
/
frac.py
frac.py
114 B
Historie
Surový
1
2
3
4
5
6
7
8
def _gcd(a, b):
while b:
a, b = b, a % b
return a
def gcd(*args):
return reduce(_gcd, args)