我正在嘗試爲xor實現lambda表達式。但是,我覺得我錯過了一些東西,因爲我從bxor表達式中得到錯誤。我究竟做錯了什麼? true = \t f -> t -- always pick the first argument
false = \t f -> f -- always pick the second argument
toBool = \b -> b True False
我正在處理這個問題。 「給定一個數組,找到出現奇數次的int。 總是隻有一個整數出現奇數次。」 我想出了這個解決方案在線: function findOdd(A) {
var n = 0;
for(var i = 0; i < A.length; i++){
n = n^A[i];
}
return n;
}
這工作,但我不知道爲什麼,我希望有人能