You are viewing a single comment's thread. Return to all comments →
*
def gemstones(arr): # Write your code here ls = list(set(arr[0])) sm = len(ls) for x in ls: for i in range(1,len(arr)): if x not in arr[i]: sm -=1 break return sm
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 →
*