힌트 더보기 - 등차수열은 두 번째 항과 첫 번째 항의 차와 세 번째 항과 두 번째 항의 차가 같다 - 등비수열은 두 번째 항과 첫 번째 항을 나눈 값이 세 번째 항과 두 번째 항을 나눈 값과 같다 정답 더보기 public static int Solution73(int[] common) { if(IsArithmeticSequence(common)){ return common[common.Length-1] + (common[1] - common[0]); }else if(IsGeometricSequence(common)){ return common[common.Length-1] * (common[1] / common[0]); }else{ throw new ArgumentException("Error"); }..