Skip to content

Instantly share code, notes, and snippets.

@crashmax-dev
Created May 1, 2022 15:05
Show Gist options
  • Save crashmax-dev/63d5454d4897b26585961f60af615c7a to your computer and use it in GitHub Desktop.
Save crashmax-dev/63d5454d4897b26585961f60af615c7a to your computer and use it in GitHub Desktop.
function cakes(recipe, available) {
return Object
.keys(recipe)
.reduce((acc, ingredient) => {
const cakes = Math.floor(
available[ingredient] /
recipe[ingredient] || 0
)
return Math.min(cakes, acc)
}, Number.MAX_SAFE_INTEGER)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment