Skip to content

Commit bd2a007

Browse files
Formatting
1 parent a9b2d4d commit bd2a007

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/longest_common_subsequence.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,7 @@ def longestCommonSubsequence(self, text1: str, text2: str) -> int:
236236
Given two strings, `text1` and `text2`, compute the length of their
237237
Longest Common Subsequence (LCS) using pure recursion.
238238
"""
239+
239240
def lcs(s1: str, s2: str) -> int:
240241
if not s1 or not s2:
241242
return 0

0 commit comments

Comments
 (0)