Skip to content

Instantly share code, notes, and snippets.

@rakibulalam
Last active May 5, 2020 22:55
Show Gist options
  • Save rakibulalam/b3259e751e6a1acf795308cdd1ce0902 to your computer and use it in GitHub Desktop.
Save rakibulalam/b3259e751e6a1acf795308cdd1ce0902 to your computer and use it in GitHub Desktop.
Greedy Florist Hacker Rank
function getMinimumCost(k, c) {
return c.sort((a,b)=>b-a).reduce((memo,value,key)=>{
const i=Math.floor(key/k);
memo+=(i+1)*value;
return memo;
},0)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment