mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-09 15:59:06 +01:00
6 lines
122 B
C#
6 lines
122 B
C#
|
public class Solution {
|
||
|
public int SingleNumber(int[] nums) {
|
||
|
return nums.Aggregate((x, y) => x ^ y);
|
||
|
}
|
||
|
}
|