Here is the interview question prompt, presented for reference.
Can you determine the deletion distance between two strings? Let's define the deletion distance as the numbers of characters needed to delete from two strings to make them equal.
For example, the deletion distance of algo
and daily
is 5. The reason is we can delete the go
(2 deletion) in algo
, and the d
, i
and y
(3 deletions) in daily
.
1000
m
and n
be the the lengths of string 1
and string 2
O(m*n)
O(m*n)
You can see the full challenge with visuals at this link.
Challenges • Asked almost 7 years ago by Jake from AlgoDaily
This is the main discussion thread generated for Find Deletion Distance.