This website works better with JavaScript
ホーム
エクスプローラ
ヘルプ
サインイン
taddeus
/
projecteuler
ウォッチ
1
スター
0
フォーク
0
ファイル
課題
0
プルリクエスト
0
Wiki
ツリー:
4a07d490c1
ブランチ
タグ
master
projecteuler
/
frac.py
frac.py
114 B
履歴
Raw
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)