summaryrefslogtreecommitdiff
path: root/AlgoDesignAndTechniqueEdxJava/sources/EditDistance.java
AgeCommit message (Collapse)Author
2018-12-21String Edit Distance done!Haidong Ji
Implementing the algo described in lecture. Getting 2 dimensional array indexing right took a bit of time. Looking at the picture helped me in realizing that the dimention should have been n+1 by m+1. First time dealing with string edit distance and alignment game, pretty interesting!