Search posts, tags, users, and pages
Mohamad Mahmood
Programming (Mobile, Web, Database and Machine Learning). Studying at the Center For Artificial Intelligence Technology (CAIT), FTSM, UKM MY
def search_subtokens(subtokens, tokens): matching_tokens = [] for token in tokens: if any(token in subtoken for subtoken in subtokens): matching_tokens.append(token) return matching_tokens # Example usage list_corpus ...
No responses yet.