반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 알고리즘
- Node.js
- type challenge
- 프로그래머스
- ip
- 쉬운 문제
- TCP
- dp
- 수학
- socket
- 자바스크립트
- 타입 챌린지
- Algorithm
- Nestjs
- 문자열
- 프로그래머스 레벨 2
- 소켓
- typescript
- HTTP
- 그래프
- 타입스크립트
- Crawling
- BFS
- 크롤링
- 가천대
- HTTP 완벽 가이드
- 백준
- javascript
- 레벨 1
- dfs
Archives
- Today
- Total
kakasoo
[node.js] 자릿수 더하기 ( 프로그래머스 레벨1 ) 본문
반응형
// 프로그래머스 level1 자릿수 더하기를 풀었습니다.
function solution(n) {
n = n.toString();
var answer = 0;
for (let i = 0; i < n.length; i++) {
answer += Number(n[i]);
}
return answer;
}
자릿수 더하기 문제이다. 간단하므로 설명 생략.
반응형
'프로그래밍 > 알고리즘 풀이' 카테고리의 다른 글
[node.js] 기능 개발 ( 프로그래머스 레벨2 ) (0) | 2021.06.26 |
---|---|
[node.js] 두 개 뽑아서 더하기 ( 프로그래머스 레벨2 ) (0) | 2021.06.26 |
[node.js] 약수의 합 ( 프로그래머스 레벨1 ) (0) | 2021.06.26 |
[node.js] 문자열을 정수로 바꾸기 ( 프로그래머스 레벨1 ) (0) | 2021.06.26 |
[node.js] 수박수박수박수박수박수? ( 프로그래머스 레벨1 ) (0) | 2021.06.26 |