ย
ย
ํ์ด๋ณด๊ธฐ
111228์ธ๋ฐ 012227์ด ๋ค์ด์๋ค๋ฉด
for๋ฌธ์ ๋๋ฉด์ ๊ฐ์ ์ธ๋ฑ์ค์ ๊ฐ์ ๋นผ์ result์ ๋ฃ์ด์ค๋ค.
ย
function answer(chess) {
let result = [];
const needs = [1, 1, 1, 2, 2, 8];
chess.forEach((v, i) => result.push(needs[i] - v));
console.log(result);
return result;
}