컴공생의 다이어리
[파이썬, Python] 백준 1543번 : 문서 검색 본문
백준 1543번 : 문서 검색
내 코드
import sys
document = sys.stdin.readline().strip()
find_txt = sys.stdin.readline().strip()
len_find_txt = len(find_txt)
index, count = 0, 0
while True:
index = document.find(find_txt, index)
if index == -1:
break
count += 1
index += len_find_txt
print(count)
728x90
반응형
'Development > Algorithm & Coding Test' 카테고리의 다른 글
[파이썬, Python] 백준 10799번 : 쇠막대기 (0) | 2022.04.23 |
---|---|
[파이썬, Python] 백준 1015번 : 수열 정렬 (0) | 2022.04.21 |
[파이썬, Python] 백준 1966번 : 프린터 큐 (0) | 2022.04.19 |
[파이썬, Python] 백준 1874번 : 스택 수열 (0) | 2022.04.19 |
[파이썬, Python] 백준 3460번 : 이진수 (0) | 2022.04.18 |
Comments