public int BinaryGcdTestWithTwoNumbers(int a, int b) { return(GreaterCommonDivisor.BinaryGcd(a, b)); }
public int BinaryGcdTestWithManyNumbers(int[] arr) { return(GreaterCommonDivisor.BinaryGcd(arr)); }