Skip to content

2335-minimum-amount-of-time-to-fill-cups

DevGod
DevGod
Vtuber
/**
* @param {number[]} amount
* @return {number}
*/
var fillCups = function(amount) {
amount = amount.sort();
console.log(amount);
return 0;
};