-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathavaliarString.py
More file actions
35 lines (31 loc) · 894 Bytes
/
avaliarString.py
File metadata and controls
35 lines (31 loc) · 894 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from difflib import SequenceMatcher
from fuzzywuzzy import fuzz
#similar function ratio() value over 0.6 means the sequences are close matches
def similar(a, b):
return SequenceMatcher(None, a, b).ratio()
def call_counter(func):
def helper(*args, **kwargs):
helper.calls += 1
return func(*args, **kwargs)
helper.calls = 0
helper.__name__= func.__name__
return helper
memo = {}
@call_counter
def levenshtein(s, t):
if s == "":
return len(t)
if t == "":
return len(s)
cost = 0 if s[-1] == t[-1] else 1
i1 = (s[:-1], t)
if not i1 in memo:
memo[i1] = levenshtein(*i1)
i2 = (s, t[:-1])
if not i2 in memo:
memo[i2] = levenshtein(*i2)
i3 = (s[:-1], t[:-1])
if not i3 in memo:
memo[i3] = levenshtein(*i3)
res = min([memo[i1]+1, memo[i2]+1, memo[i3]+cost])
return res