Skip to content

Instantly share code, notes, and snippets.

@YonatanKra
Created October 3, 2021 07:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save YonatanKra/47d86d26afe1968d7dd02a30287fb3b3 to your computer and use it in GitHub Desktop.
Save YonatanKra/47d86d26afe1968d7dd02a30287fb3b3 to your computer and use it in GitHub Desktop.
function findUniqueNumber(nums) {
return nums.reduce((val, num) => val ^ num);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment