반응형
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 |
Tags
- Nestjs
- 수학
- Node.js
- socket
- Algorithm
- 그래프
- ip
- type challenge
- 백준
- Crawling
- dfs
- typescript
- 프로그래머스 레벨 2
- 레벨 1
- 타입스크립트
- 자바스크립트
- 문자열
- 소켓
- javascript
- dp
- 타입 챌린지
- 쉬운 문제
- 알고리즘
- 가천대
- HTTP
- BFS
- TCP
- 프로그래머스
- HTTP 완벽 가이드
- 크롤링
Archives
- Today
- Total
kakasoo
[node.js] 문자열 분석 ( 백준 10820번 ) 본문
반응형
const readline = require("readline");
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
});
rl.on("line", (line) => {
main(line);
});
/**
*
* @param {string} line
*/
const main = (line) => {
let small = 0;
let big = 0;
let num = 0;
let space = 0;
for (let i = 0; i < line.length; i++) {
const cur = line[i];
if (!isNaN(cur - 0)) {
if (cur === " ") {
space++;
} else {
num++;
}
}
if (
"a".charCodeAt(0) <= cur.charCodeAt(0) &&
cur.charCodeAt(0) <= "z".charCodeAt(0)
) {
small++;
}
if (
"A".charCodeAt(0) <= cur.charCodeAt(0) &&
cur.charCodeAt(0) <= "Z".charCodeAt(0)
) {
big++;
}
}
console.log(`${small} ${big} ${num} ${space}`);
};
isNaN은 파라미터가 없으면 true를 뱉는다. 사실 당연하다. 보통 다 그렇게 구현하지 않을까?
boolean값을 만들어놓고, 조건을 통과하지 못하면 false로 바꾸는데, 파라미터가 없으면 조건 자체를 못 타니깐.
반응형
'프로그래밍 > 알고리즘 풀이' 카테고리의 다른 글
[node.js] 요세푸스 문제 ( 백준 1158번 ) (0) | 2021.04.16 |
---|---|
[node.js] 트리의 부모 찾기 ( 백준 11725번 ) (0) | 2021.04.15 |
[node.js] 10개씩 끊어 출력하기 ( 백준 11721번 ) (0) | 2021.04.15 |
[node.js] 욕심쟁이 판다 ( 백준 1937번 ) (0) | 2021.04.14 |
[node.js] 보물섬 ( 백준 2589번 ) (0) | 2021.04.13 |