일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 읽기
- English
- Problem Solving
- 링피트
- FIT XR
- 사이드
- 화상영어
- 영어원서읽기
- 쓰릴오브파이트
- 월간
- 뭐든
- 파비최
- leetcode
- 미드시청
- 리얼 클래스
- 매일
- 괜찮음
- 영어공부
- 3줄정리
- 개발자
- 프로젝트
- 스탭퍼
- Writing
- 30분
- 잡생각
- 운동
- 10분
- Daily Challenge
- 만화도
- realclass
Archives
- Today
- Total
파비의 매일매일 공부기록
2023.02.26 Today's Challenge 본문
https://leetcode.com/problems/edit-distance/
Edit Distance - LeetCode
Can you solve this real interview question? Edit Distance - Given two strings word1 and word2, return the minimum number of operations required to convert word1 to word2. You have the following three operations permitted on a word: * Insert a character * D
leetcode.com
Hard 난이도이긴 한데, 기본적인 DP 문제긴 하다 =_=
class Solution:
def minDistance(self, word1: str, word2: str) -> int:
m, n = len(word1), len(word2)
dp = [[0] * (n+1) for _ in range(m+1)]
for i in range(1, m+1):
dp[i][0] = i
for j in range(1, n+1):
dp[0][j] = j
for i in range(1, m+1):
for j in range(1, n+1):
if word1[i-1] == word2[j-1]:
dp[i][j] = dp[i-1][j-1]
else:
dp[i][j] = min(dp[i-1][j-1], dp[i-1][j], dp[i][j-1]) + 1
return dp[m][n]
반응형
'Problem Solving > LeetCode' 카테고리의 다른 글
2023.02.28 Today's Challenge (0) | 2023.02.28 |
---|---|
2023.02.27 Today's Challenge (0) | 2023.02.27 |
2023.02.25 Today's Challenge (0) | 2023.02.25 |
2023.02.24 Today's Challenge (0) | 2023.02.24 |
2023.02.23 Today's Challenge (0) | 2023.02.23 |
Comments