Given two strings A & B, find minimum no. of steps required to convert A to B. You have following 3 operations permitted on a word: - Insert a character - Delete a character - Replace a character
To solve the problem, a recursive approach is used. All the characters in both strings are traversed one by one, either from left or right end, & the given operations are applied.