반응형
function solution(food) {
var answer = '';
var tempArr = [];
for(var i=1; i<food.length; i++) {
tempArr.push(Math.floor(food[i]/2))
}
for(var i=0; i<=tempArr.length; i++) {
answer += String(i+1).repeat(tempArr[i])
}
var str_reverse = answer.split('').reverse().join('');
answer += 0;
answer += str_reverse;
return answer;
}
반응형
'TIL' 카테고리의 다른 글
[TIL] 프로그래머스 (핸드폰 번호 가리기) (0) | 2024.03.13 |
---|---|
[TIL]프로그래머스 (내적) (0) | 2024.03.13 |
[TIL] 프로그래머스 (이상한 문자 만들기) (0) | 2024.03.11 |
[TIL] Dependency Injection(DI) & Inversion of Control (IoC) (0) | 2024.03.07 |
[TIL] 프로그래머스 (시저 암호) (0) | 2024.03.06 |
댓글