반응형
https://www.acmicpc.net/problem/1152
const fs = require('fs')
const filepath = process.platform === "linux"? "/dev/stdin" : "./input.txt";
let input = fs.readFileSync(filepath).toString().split("\n");
let str = input[0].split(" ");
let count = 0;
for (let i = 0; i <str.length; i++) {
if (str[i] !== " "){
count++
}
if (str[i] === ""){
count--;
}
}
console.log(count)
반응형
'Algorithm' 카테고리의 다른 글
[백준/node.js] 5622 다이얼 (0) | 2021.10.15 |
---|---|
[백준/node.js] 2908 상수 (0) | 2021.10.14 |
[백준/node.js] 1546 평균 (0) | 2021.09.26 |
[백준/node.js] 3052 나머지 (0) | 2021.09.25 |
[백준/Node.js] 2562 최댓값 (0) | 2021.09.25 |
댓글