You are viewing a single comment's thread. Return to all comments →
def gemstones(arr): # Write your code here common = set(arr[0]) for i in range(1, len(arr)): common &= set(arr[i]) return len(common)
Seems like cookies are disabled on this browser, please enable them to open this website
Gemstones
You are viewing a single comment's thread. Return to all comments →