From bff505b2e9c8d6e2bf4282c77811171c96fe5484 Mon Sep 17 00:00:00 2001 From: Mukundan314 Date: Mon, 4 Nov 2024 12:54:46 +0530 Subject: [PATCH] Remove LCSubstr since it can return the wrong answer --- pyrival/strings/LCSubstr.py | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 pyrival/strings/LCSubstr.py diff --git a/pyrival/strings/LCSubstr.py b/pyrival/strings/LCSubstr.py deleted file mode 100644 index 5cdb5b29..00000000 --- a/pyrival/strings/LCSubstr.py +++ /dev/null @@ -1,3 +0,0 @@ -from difflib import SequenceMatcher - -LCSubstr = lambda a, b: SequenceMatcher(None, a, b).find_longest_match(0, len(a), 0, len(b))