def euclid(a,b): if b == 0: return a return euclid(b,a % b) print(euclid(12,6))
← 25.3 用于稀疏图的Johnson算法 31.6 元素的幂→