250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 1002
- 9020
- 그리디 알고리즘
- 백트래킹
- 가상환경
- end to end
- 실버
- 밑바닥부터 시작하는 딥러닝
- 15649
- 개발환경
- N-Queen
- Python
- 신경망 학습
- n과 m
- BOJ
- 경사하강법
- 파이썬
- 백준
- 재귀
- 설정
- Mac
- 손실함수
- 4948
- streamlit
- 기계학습
- pyenv
- 파이싼
- 1101
Archives
- Today
- Total
파이톨치
[백준] 1120 본문
728x90
s1, s2 = input().split()
l1 = len(s1)
l2 = len(s2)
def same(s1, s2):
cnt = 0
for i in range(len(s1)):
if s1[i] == s2[i]:
cnt += 1
return cnt
if len(s1) == len(s2):
print(len(s1) - same(s1, s2))
else:
if l1 < l2:
idx = 0
max = 0
for i in range(l2-l1+1):
if max <= same(s1, s2[i:i+l1]):
max = same(s1, s2[i:i+l1])
print(l1 - max)
728x90