Skip to content

Instantly share code, notes, and snippets.

@caglarorhan
Created June 13, 2022 20:25
Show Gist options
  • Save caglarorhan/5c1d9c4aa17c83ffbdd8d69609da5be8 to your computer and use it in GitHub Desktop.
Save caglarorhan/5c1d9c4aa17c83ffbdd8d69609da5be8 to your computer and use it in GitHub Desktop.
countDecreasingRatings Amazon SDE2 coding question
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