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