SyntaxFix
Write A Post
Hire A Developer
Questions
in python with recursion:
def gcd(a, b): if a%b == 0: return b return gcd(b, a%b)