-
Notifications
You must be signed in to change notification settings - Fork 20.8k
Closed
Labels
Description
The Levenshtein distance is a string metric for measuring the difference between two sequences.
Input: Two Strings (Let's say A and B)
Output: Levenshtein Distance
In this problem, we need to find the minimum number of single-character edits (this could be insertions, substitutions, or deletions) that can convert one string to another (eg: A to B)
