Implement recursive greatest common divisor (Euclidean algorithm) int gcd(int a, int b).
int gcd(int a, int b)
GCD(48, 18) = 6 [✓] Euclidean GCD recursion verified (Time: 0.005s, Memory: 1.8 MB)