Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# https://www.codechef.com/problems/LCPESY >> probleam link
solution in python 3.x
# Longest Common Pattern
https://www.codechef.com/problems/LCPESY >> probleam link
Solution in python 3.x

```python
for _ in range(int(input())):
s = [0]*257 # for integers , small letters and capital letters
m = [0]*257 # ( [65-90][A-B], [97-122][a-z],]
Expand All @@ -18,5 +20,5 @@ for _ in range(int(input())):
print(k)
# Happy Coding :)

```