[BaekJoon] 1152번: 단어의 개수 (Python)
implementation, string
Tags: implementation, python, string
Categories: Baekjoon
- Reference
- 올리기도 부끄럽네
- 낼부터 스탠다드 문제는 고르기 전에 미리 읽어 봐야겠다
Solution
# 스탠다드 문제는 원래 이렇나..?
array = input().split()
print(len(array))
implementation, string
Tags: implementation, python, string
Categories: Baekjoon
# 스탠다드 문제는 원래 이렇나..?
array = input().split()
print(len(array))
Dev Battery
Search across posts, tags, and pages. Top matches are shown first.
Leave a comment