第26733题 判断题
假设gcd函数可正确求解两个正整数的最大公约数,判断findMusicalPattern(4,6)的返回值是否为2
import math

def findMusicalPattern(rhythm1, rhythm2):
    commonDivisor = math.gcd(rhythm1, rhythm2)
    patternLength = (rhythm1 * rhythm2) // commonDivisor
{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析