A, B = input().split()
diff = 50
for i in range(len(B)-len(A)+1):
cnt = 0
for j in range(len(A)):
if A[j] != B[j+i]:
cnt += 1
if cnt < diff:
diff = cnt
print(diff)
'> 알고리즘 문제 풀이 > BOJ' 카테고리의 다른 글
[Python] 1929-소수 구하기 (0) | 2020.11.05 |
---|---|
*[Python] 12865-평범한 배낭 (0) | 2020.10.27 |
[Python] 1026-보물 (0) | 2020.10.27 |
*[Python] 1904-01타일 (0) | 2020.10.26 |
[Python] 13300-방 배정 (0) | 2020.10.26 |
댓글