Skip to content

Commit 1a953fe

Browse files
committed
Modified Data Dynamic Programming folder .java file name and class name
1 parent 6dcce9f commit 1a953fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dynamic Programming/LevenshteinDistance.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*
77
*/
88

9-
public class Levenshtein_distance{
9+
public class LevenshteinDistance{
1010
private static int minimum(int a, int b, int c){
1111
if(a < b && a < c){
1212
return a;

0 commit comments

Comments
 (0)