Skip to content

Latest commit

 

History

History
5 lines (4 loc) · 282 Bytes

File metadata and controls

5 lines (4 loc) · 282 Bytes

Levenstein Distance

This repo contains a C++ code implementing methods to compute the Levenstein (Damerau) Distance between 2 words.
The key approach is dynamic programming approach.
One particularly interesting implementation is based on recursivity with memoization.