You are viewing a single comment's thread. Return to all comments →
PYTHON
def getTotalX(a, b): # Write your code here c=0 for i in range(max(a),min(b)+1): if all([i%e==0 for e in a]): if all([e%i==0 for e in b]): c+=1 return c
Seems like cookies are disabled on this browser, please enable them to open this website
Between Two Sets
You are viewing a single comment's thread. Return to all comments →
PYTHON