Skip to main content
Go to Latest
File
export default function singleNumber(nums: number[]): number { return nums.reduce((x, y) => x ^ y, 0);}