Problem 1032. compare strings
Given 2 strings and 3 actions (Insert,delete,replace) on characters. Find the difference between two strings.
Example:
string1 = 'spring'
string2 = 'strange'
replace(p,t), replace(i,a), insert(e) = 3 actions = 3 differences
so the answer is 3
Solution Stats
Problem Comments
-
1 Comment
Check out Cody Problem 93: Calculate the Levenshtein distance between two strings for other solutions to this problem.
http://www.mathworks.com/matlabcentral/cody/problems/93-calculate-the-levenshtein-distance-between-two-strings
Solution Comments
Show commentsProblem Recent Solvers30
Suggested Problems
-
Find the peak 3n+1 sequence value
2541 Solvers
-
Project Euler: Problem 1, Multiples of 3 and 5
3479 Solvers
-
Compute a dot product of two vectors x and y
1019 Solvers
-
288 Solvers
-
Who has power to do everything in this world?
468 Solvers
More from this Author11
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!