Get GCD in more efficient code
this is 掉渣天。
public int gcd(int a, int b) { return b == 0 ? a : gcd(b, a % b); }