Skip to content

Commit 9baed74

Browse files
authored
Update Dameray-Levenshtein.java
1 parent fada4e5 commit 9baed74

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/main/java/com/thealgorithms/dynamicprogramming/Dameray-Levenshtein.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@ public static int optimalStringAlignmentDistance(String s1, String s2) {
2828
}
2929

3030
public static void main(String[] args) {
31-
System.out.println(optimalStringAlignmentDistance("geeks", "forgeeks"));
31+
System.out.println(optimalStringAlignmentDistance("Hello", "Hello There"));
3232
}
3333
}
3434

35-
//This code is contributed by shivamsharma215

0 commit comments

Comments
 (0)