단어의 개수 (1152)

Created:

Baekjoon No.1152
문자열을 공백을 기준으로 자른 후 나온 단어의 개수는?

Bash

Bash
1
2
read -a arr
echo ${#arr[@]}

Node.js

JavaScript
1
2
const arr = require("fs").readFileSync(0).toString().trim().split(" ");
console.log(arr.length);

왜 틀린 건지 모르겠다..

Python3

Python
1
print( len(input().split()) )

Ruby

Ruby
1
puts gets.chomp.split().size