You are viewing a single comment's thread. Return to all comments →
Here my Python Solution:
def matchingStrings(strings, queries): # Write your code here count_list = []
for i in queries: count_list.append(strings.count(i)) return count_list
Seems like cookies are disabled on this browser, please enable them to open this website
Sparse Arrays
You are viewing a single comment's thread. Return to all comments →
Here my Python Solution:
def matchingStrings(strings, queries): # Write your code here count_list = []