📝 문제
A decimal number is called deci-binary if each of its digits is either 0 or 1 without any leading zeros. For example, 101 and 1100 are deci-binary, while 112 and 3001 are not.
Given a string n that represents a positive decimal integer, return the minimum number of positive deci-binary numbers needed so that they sum up to n.
🔑 나의 풀이
var minPartitions = function(n) {
let answer = 0;
for(let i = 0; i < n.length; i++) {
answer = answer < n[i] ? n[i] : answer;
}
return answer;
};
- 정확도 테스트 결과
'Coding test' 카테고리의 다른 글
[프로그래머스] 셔틀버스 (Lv2) - javascript (1) | 2022.09.17 |
---|---|
[프로그래머스] 뉴스 클러스터링 (Lv 2) - javascript (0) | 2022.09.15 |
[Leetcode] Array101(explore) 풀이 모음 - javascript (0) | 2022.07.05 |
[프로그래머스] 행렬 테두리 회전하기 (Lv 2) - javascript (0) | 2022.06.29 |
[프로그래머스] 거리두기 확인하기 (Lv 2) - javascript (0) | 2022.06.29 |