We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
defgetTotalX(a,b):# Write your code herebetween=0fornuminrange(1,max(b)+1):cond_a=all([bool(num%i==0)foriina])cond_b=all([bool(i%num==0)foriinb])ifcond_aandcond_b:between+=1returnbetween
Cookie support is required to access HackerRank
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 →
I forgot math concepts and did this instead.