Created
June 13, 2022 20:25
-
-
Save caglarorhan/5c1d9c4aa17c83ffbdd8d69609da5be8 to your computer and use it in GitHub Desktop.
countDecreasingRatings Amazon SDE2 coding question
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
function countDecreasingRatings(arr){ | |
let isDecrease=false; | |
let theMap={}; | |
let chainLength=1; | |
for(let x= 0; x<arr.length-1;x++){ | |
let prev=arr[x]; | |
let next=arr[x+1]; | |
if(next<prev){ | |
if(theMap[chainLength]){ | |
theMap[chainLength]++ | |
}else{ | |
theMap[chainLength]=1; | |
} | |
chainLength++; | |
if(theMap[chainLength]){ | |
theMap[chainLength]++ | |
}else{ | |
theMap[chainLength]=1; | |
} | |
}else{ | |
chainLength=1; | |
} | |
} | |
theMap[1]=arr.length | |
console.log(theMap); | |
} | |
countDecreasingRatings([4,3,5,4,3,2]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment