[CodeKata]予算
リンク https://programmers.co.kr/learn/courses/30/lessons/12982 私の答え
function solution(d, budget) {
const arr = [];
const ascendingD = d.sort((a, b) => a - b);
for (let num of ascendingD) {
budget -= num;
if (budget >= 0) {
arr.push(num);
} else {
return arr.length;
}
}
return arr.length;
}
Reference
この問題について([CodeKata]予算), 我々は、より多くの情報をここで見つけました https://velog.io/@realryankim/CodeKata-예산テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol