We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
One of the advantage of the Levenshtein library is that the distance function works on any iterable like list and tuple.
from Levenshtein import distance distance([0,1,2,3,4,5], [5,4,1,2,3])
versus
from fast_edit_distance import edit_distance edit_distance([0,1,2,3,4,5], [5,4,1,2,3])
The text was updated successfully, but these errors were encountered:
Obvious workaround would simply be to convert the iterable into string but we would have to check on the efficiency of the conversion.
Sorry, something went wrong.
No branches or pull requests
One of the advantage of the Levenshtein library is that the distance function works on any iterable like list and tuple.
versus
The text was updated successfully, but these errors were encountered: