-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTwo-Array.py
More file actions
35 lines (28 loc) · 819 Bytes
/
Two-Array.py
File metadata and controls
35 lines (28 loc) · 819 Bytes
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
31
32
33
34
35
# Python program to find minimum number
# of operations to convert s1 to s2
# Function to find the minimum number
# of operations to convert s1 to s2
def editDistance(s1, s2):
m = len(s1)
n = len(s2)
# prev stores results for (i-1) th row
# and curr for i-th row
prev = [0] * (n + 1)
curr = [0] * (n + 1)
# For 0-th row
for j in range(n + 1):
prev[j] = j
# Rest of the rows
for i in range(1, m + 1):
curr[0] = i # j = 0
for j in range(1, n + 1):
if s1[i - 1] == s2[j - 1]:
curr[j] = prev[j - 1]
else:
curr[j] = 1 + min(curr[j - 1], prev[j], prev[j - 1])
prev = curr[:]
return prev[n]
if __name__ == "__main__":
s1 = "abcd"
s2 = "bcfe"
print(editDistance(s1, s2))