This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def is_fuzzy_match(text, query): | |
# Location of last match. | |
# Initialize to -1 since no match yet. | |
# -1 also works well for our usage. | |
l = -1 | |
t = text.lower() | |
q = query.lower() | |
# Iterate over each character in the query. | |
for c in q: | |
if c == ' ': |