Skip to content

Commit 5095896

Browse files
authored
chore: remove commented code
1 parent 2638d80 commit 5095896

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

dynamic_programming/longestcommonsubsequence.go

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,3 @@ func LongestCommonSubsequence(a string, b string, m int, n int) int {
2929
// returning the length of longest common subsequence
3030
return lcs[m][n]
3131
}
32-
33-
// func main(){
34-
// // declaring two strings and asking for input
35-
36-
// var a,b string
37-
// fmt.Scan(&a, &b)
38-
// // calling the LCS function
39-
// fmt.Println("The length of longest common subsequence is:", longestCommonSubsequence(a,b, len(a), len(b)))
40-
// }

0 commit comments

Comments
 (0)