Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save caglarorhan/7a8260209c7982b90aceb45ff9f2813c to your computer and use it in GitHub Desktop.
Save caglarorhan/7a8260209c7982b90aceb45ff9f2813c to your computer and use it in GitHub Desktop.
Find the lost item in an ordered array. All items are integer and all numbers between 1 to n. Only one is lost, find the lost one.
// practical way
let arr = [1,7,4,2,8,9,3,6];
let arrLength = arr.length;
let sum2=0;
arr.forEach(item=>{sum2+=item});
console.log(((arrLength+1)*(arrLength+2)/2)-sum2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment