Skip to content

Commit

Permalink
Modified Data Dynamic Programming folder .java file name and class name
Browse files Browse the repository at this point in the history
  • Loading branch information
wannee2 committed Dec 16, 2017
1 parent 6dcce9f commit 1a953fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dynamic Programming/LevenshteinDistance.java
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 1a953fe

Please sign in to comment.