[Question] Greatest Common Divisor Aug 15th, 2014 12:00 am Question Get GCD in more efficient code Code this is 掉渣天。 public int gcd(int a, int b) { return b == 0 ? a : gcd(b, a % b); }