python GCD one liner.py

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python GCD one liner.py相关的知识,希望对你有一定的参考价值。

def gcd(a, b):
	return max([n for n in range(1, min(a, b)+1) if a%n == 0 and b%n == 0])

以上是关于python GCD one liner.py的主要内容,如果未能解决你的问题,请参考以下文章

ZOJ 3593 One Person Game(ExGcd + 最优解)题解

与 GCD 同时处理数组项

ios开发GCD-dispatch_semaphore_t信号量计数器

python gcd.py

python GCD

python GCD.py