https://leetcode.com/problems/edit-distance/ Edit Distance - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 방향에 의미 부여하기 328 ms class Solution: def minDistance(self, word1: str, word2: str) -> int: if len(word1) == 0 or len(word2) == 0: return max(len(word1), len(word2)) dp = [] fo..