写一个函数gcd计算两个数字的最大公约数。比如数字12和数字8的最大公约数是4。 见tips.md答案: function gcd(a, b) { if(a === b ) return a if(a > b) return gcd(a-b, b) return gcd(a, b - a)}