[백준] #2386 도비의 영어 공부 python
2023. 2. 13. 06:00
https://www.acmicpc.net/problem/2386
📕 설명 📕
find와 target으로 나누어 값이 있는지 count 내장함수를 통해 개수를 구한다.
lower 내장함수로 값이 대문자인 경우도 고려해준다.
🧑🏻💻 나의 풀이 🧑🏻💻
while True:
S = list(map(str, input().split()))
find = S[0]
target = S[1:]
if find == '#':
break
print(find, str(target).lower().count(find))
'Programming > Algorithm' 카테고리의 다른 글
[백준] #2420 사파리월드 python (0) | 2023.02.15 |
---|---|
[백준] #2309 일곱 난쟁이 python (0) | 2023.02.14 |
[백준] #1864 문어 숫자 python (0) | 2023.02.12 |
[백준] #7510 고급 수학 python (0) | 2023.02.11 |
[백준] #1834 나머지와 몫이 같은 수 python (0) | 2023.02.11 |