단계별 풀어보기: 문자열
팀 스터디에서 풀어보기로 한 문제이다.
# 백준 1152 단어의 개수 python
import sys
input = sys.stdin.readline
words = list(input().split())
print(len(words))
파이썬 내장함수를 사용하니 매우 간결하게 끝났다.
// 백준 1152 단어의 개수 javascript
let fs = require('fs');
const filePath = process.platform === "linux" ? "/dev/stdin" : "input.txt";
let input = fs.readFileSync('input.txt').toString().trim().split(' ');
if (input[0] === '') {
console.log(0);
} else {
console.log(input.length);
}
공백 하나만 있을 때의 반례를 찾아내야했다.
난이도가 쉬우니 반례 찾아내기가 어렵군😅
js에서도 split()으로 나눠주고 trim()으로 공백 문자를 제거해준 뒤 개수를 세주었다.
js는 입출력, 실행 때문에 애먹다가 드디어 첫 문제 풀어봄 히히