Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,14 @@
|
|||
Function lcs(string1,string2)
|
||||
For i = 1 To Len(string1)
|
||||
tlcs = tlcs & Mid(string1,i,1)
|
||||
If InStr(string2,tlcs) Then
|
||||
If Len(tlcs) > Len(lcs) Then
|
||||
lcs = tlcs
|
||||
End If
|
||||
Else
|
||||
tlcs = ""
|
||||
End If
|
||||
Next
|
||||
End Function
|
||||
|
||||
WScript.Echo lcs(WScript.Arguments(0),WScript.Arguments(1))
|
||||
Loading…
Add table
Add a link
Reference in a new issue