2020.10.26
출처 : 프로그래머스
📝문제
✏️해답
function solution(x) {
let answer = true;
let stringX = x.toString();
let arr = [];
let hashad = 0;
for(let i=0;i<stringX.length;i++){
arr.push(stringX.charAt(i));
hashad += parseInt(arr[i]);
}
x % hashad == 0 ? answer=true : answer=false;
return answer;
}
회고🧐
형변환을 할줄알면 쉽게품!
'코딩테스트' 카테고리의 다른 글
[1일1코👨🏻💻] Lv.1 행렬의 덧셈.js - 프로그래머스 (0) | 2020.10.27 |
---|---|
[1일1코👨🏻💻] Lv.1 핸드폰 번호 가리기.js - 프로그래머스 (0) | 2020.10.27 |
[1일1코👨🏻💻] Lv.1 평균 구하기.js - 프로그래머스 (0) | 2020.10.26 |
[1일1코👨🏻💻] Lv.1 콜라츠 추측.js - 프로그래머스 (0) | 2020.10.25 |
[1일1코👨🏻💻] Lv.1 최대공약수와 최소공배수.js - 프로그래머스 (0) | 2020.10.22 |
댓글