Hello,
I'm looking for an algorithm that takes as arguments two strings, source and destination, and returns the steps required to transform the source string to the destination. Something that takes Levenshtein distance one step farther.
E.g.,
Input: source "abc", dest "abbc"
Output: insert 'b' at position 1 in source
Input: source "abc", dest "ac"
Output: delete 'b' at position 1 in source
Thanks very much.