Back to all solutions
#1833 - Maximum Ice Cream Bars
Problem Description
It is a sweltering summer day, and a boy wants to buy some ice cream bars.
At the store, there are n ice cream bars. You are given an array costs of length n, where costs[i] is the price of the ith ice cream bar in coins.
The boy initially has coins coins to spend, and he wants to buy as many ice cream bars as possible.
Note: The boy can buy the ice cream bars in any order.
Return the maximum number of ice cream bars the boy can buy with coins.
Solution
/**
* @param {number[]} costs
* @param {number} coins
* @return {number}
*/
var maxIceCream = function(costs, coins) {
let count = 0;
costs.sort((a, b) => a - b);
for (let i = 0; i < costs.length; i++) {
if (costs[i] <= coins) {
count++;
coins -= costs[i];
}
}
return count;
};