일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- cpp
- til
- recursion
- 피보나치 수
- flask
- 파이썬 포렌식
- matrixElementsSum
- Sequential Search
- 2015 봄학기 알고리즘
- markdown
- shapeArea
- All Longest Strings
- adjacentElementsProduct
- 백준
- 파이썬머신러닝완벽가이드
- data_structure
- Counting cells in a blob
- baekjun
- 10953
- Daily Commit
- codesingal
- Python
- 2750
- 수 정렬하기
- codesignal
- Numpy
- collections.deque
- centuryFromYear
- almostIncreasingSequence
- C++
Archives
- Today
- Total
Introfor
[백준] 1152번 단어의 개수 본문
입력 받은 string의 양쪽 공백을 없애고, 공백을 기준으로 분리 한 후 리스트의 개수를 반환
1
2
3
4
5
6
|
def solution():
return len(input().strip().split())
res = solution()
print(res)
|
cs |
다른 사람 코드
문장을 입력 받고, 공백으로 나누는 것은 동일. 3번째 줄에서 공백이 아닌 문자들을 분류 후 다음 줄에서 개수 반환
1
2
3
4
|
string = input("")
words = string.split(" ")
words = [w for w in words if w != ""]
print(len(words))
|
cs |
'Programming_prob > BaekJoon' 카테고리의 다른 글
[백준] 2941번 크로아티아 알파벳 (0) | 2020.10.07 |
---|---|
[백준] 2908번 상수 (0) | 2020.10.06 |
[백준] 1157번 단어 공부 (0) | 2020.10.06 |
[백준] 2675번 문자열 반복 (0) | 2020.10.05 |
[백준] 10809번 알파벳 찾기 (0) | 2020.10.05 |
Comments