mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-07 09:45:04 +08:00
Merge pull request #361 from LeeChungWan/DynamicProgramming
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){
|
private static int minimum(int a, int b, int c){
|
||||||
if(a < b && a < c){
|
if(a < b && a < c){
|
||||||
return a;
|
return a;
|
||||||
|
Reference in New Issue
Block a user