Created
March 19, 2022 02:41
-
-
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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