96. Single Number

I'm a slow walker, but I never walk backwards.

Task Description
Single Number
給定一組長度為 n 的正整數陣列 A。陣列中只有一個元素只出現一次,其它元素都會出現兩次。請找出只出現一次的元素,並列印出來。
Input Format
第一列輸入為 n,第二列輸入為 A 中的 n 個元素值。
Note: 0 < n ≤ 100、 0 ≤ A[i] ≤ 100
Output Format
印出只出現一次的元素
Sample Input

1
2
3
2 2 1

Sample Output

1
1

Sample Input

1
2
5
1 2 2 4 1

Sample Output

1
4

Submit

Login

Testdata Set

Download Testdata