計算從N個不同數字的集合內取出M個不同數字的可能組合個數。
範例
Value1 = Combination(3, 2); // Value1 = 3
假設母集合有三個數字 A, B, C, 則取出任意兩個數字的可能組合數 = (A,B), (B,C), (A,C) 共三種。
請參考 Permutation函數