mirror of
https://github.com/TheAlgorithms/Java.git
synced 2026-02-04 04:23:32 +08:00
Modified Data Dynamic Programming folder .java file name and class name
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user