-- coding:utf-8 -- ## 只要循环10次立即出准确结果,速度秒杀所有方法 print('Hello world!') def gcd(a, b): # write code here cg = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] maxs = 0 a_c = 0 if b % a == 0: maxs = a return maxs elif a % b == 0: maxs = b return maxs else: ...