Skip to content

Commit 0b3ef79

Browse files
committed
format: adding author
1 parent a2dd3b5 commit 0b3ef79

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/main/java/com/thealgorithms/strings/LongestCommonSubstring.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
* Longest Common Substring finds the longest string that is a
55
* contiguous substring of two input strings.
66
* Example: "abcdef" and "zcdemf" -> "cde"
7+
*
8+
* author: Vraj Prajapati @Rosander0
79
*/
810
public final class LongestCommonSubstring {
911

src/test/java/com/thealgorithms/strings/LongestCommonSubstringTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package com.thealgorithms.strings;
2-
2+
//author: Vraj Prajapati @Rosander0
33
import static org.junit.jupiter.api.Assertions.assertEquals;
44
import org.junit.jupiter.api.Test;
55

0 commit comments

Comments
 (0)