SkylineProblem.java move Others Directory and Refactoring other files

This commit is contained in:
sangjun2
2017-11-27 17:32:26 +09:00
parent b5f0c5d5c3
commit a8e0a4812d
5 changed files with 135 additions and 4 deletions

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;