Skip to content

Instantly share code, notes, and snippets.

@laddered
Last active January 28, 2020 11:41
Show Gist options
  • Save laddered/2014110cc5476deaa5bdeef2f51ef660 to your computer and use it in GitHub Desktop.
Save laddered/2014110cc5476deaa5bdeef2f51ef660 to your computer and use it in GitHub Desktop.
function solution(A) {
while(A.length>0){
findEl=A.shift()
indexEl=A.indexOf(findEl)
if(indexEl>=0){
A.splice(indexEl,1)
}else{
return findEl
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment