Skip to content

Instantly share code, notes, and snippets.

@nickcherry
Created March 23, 2018 16:37
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 nickcherry/72b4f0ca26c884741e4ef99bf9992806 to your computer and use it in GitHub Desktop.
Save nickcherry/72b4f0ca26c884741e4ef99bf9992806 to your computer and use it in GitHub Desktop.
Lonely Integer
function lonelyInteger(arr) {
return arr.reduce((acc, n) => acc ^ n);
}
const arr = [1, 4, 1, 2, 3, 4, 3];
console.log(lonelyInteger(arr));
// 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment