Merge pull request #361 from LeeChungWan/DynamicProgramming

Modified Data Dynamic Programming folder .java file name and class name
This commit is contained in:
Chetan Kaushik 2017-12-16 22:58:54 +05:30 committed by GitHub
commit 50f69f5f20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,7 +6,7 @@
*
*/
public class Levenshtein_distance{
public class LevenshteinDistance{
private static int minimum(int a, int b, int c){
if(a < b && a < c){
return a;