You are viewing a single comment's thread. Return to all comments →
Python
def gemstones(arr): sets = [set(i) for i in arr] return len(set.intersection(*sets))
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 →
Python