반응형
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
- 타입스크립트
- 타입 챌린지
- 가천대
- 문자열
- TCP
- 쉬운 문제
- dp
- Crawling
- 프로그래머스 레벨 2
- ip
- javascript
- type challenge
- 레벨 1
- 알고리즘
- 백준
- 크롤링
- 자바스크립트
- Algorithm
- 프로그래머스
- Node.js
- HTTP 완벽 가이드
- 소켓
- BFS
- 그래프
- typescript
- socket
- Nestjs
- dfs
- 수학
- HTTP
Archives
- Today
- Total
kakasoo
[node.js] 행복한지 슬픈지 ( 백준 10769번 ) 본문
반응형
const readline = require("readline");
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
});
rl.on("line", (line) => {
main(line);
rl.close();
}).on("close", () => {
process.exit();
});
const findEmotion = (line, emotion) => {
let count = 0;
for (let i = 0; i < line.length - 3; i++) {
if (line[i] === emotion[0]) {
if (line[i + 1] === emotion[1]) {
if (line[i + 2] === emotion[2]) {
count++;
}
}
}
}
return count;
};
/**
*
* @param {string} line
*/
const main = (line) => {
const happy = findEmotion(line, ":-)");
const sad = findEmotion(line, ":-(");
if (happy > sad) {
console.log("happy");
} else if (sad > happy) {
console.log("sad");
} else {
if (happy === 0) {
console.log("none");
} else {
console.log("unsure");
}
}
};
정규표현식을 이용해 풀었으면 어려웠을 테지만, 그냥도 풀 수 있는 문제라 간단했다.
반응형
'프로그래밍 > 알고리즘 풀이' 카테고리의 다른 글
[node.js] 돌 게임2 ( 백준 9656번 ) (0) | 2021.04.13 |
---|---|
[node.js] 빙산 ( 백준 2573번 ) (0) | 2021.04.12 |
[node.js] !밀비 급일 ( 백준 11365번 ) (0) | 2021.04.11 |
[node.js] 숫자 ( 백준 10093번 ) (0) | 2021.04.11 |
[node.js] 버블 소트 ( 백준 1377번 ) (0) | 2021.04.11 |