1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-19 17:56:55 +02:00
LeetCode/cs/single-number.cs
Matej Focko c838c99927
cs: add “136. Single Number”
Signed-off-by: Matej Focko <mfocko@redhat.com>
2024-01-08 22:29:29 +01:00

5 lines
122 B
C#

public class Solution {
public int SingleNumber(int[] nums) {
return nums.Aggregate((x, y) => x ^ y);
}
}