Great approach to solve the challange! One doubt, how do you know that max value of list *a* is lesser than min value of list *b* ?
@marcelocortezdev2 жыл бұрын
Great explanation on the 'thought' process
@KindsonTheTechPro2 жыл бұрын
Glad it was helpful!
@readbhagwatgeeta38102 жыл бұрын
Thank you so much for very easy solution😇...without any complex terminologies🙏🙏
@anniamatthews68032 жыл бұрын
thank you!! this was a great explanation.
@paktric2 жыл бұрын
Nice video, Kindson 👍
@79-surajyadav262 жыл бұрын
great but we can even reduce no of comparison by 👇👇 def getTotalX(a, b): count = 0 for number in range (max(a), min(b)+1) : factor = True for element in a : if number % element != 0 : factor = False break if factor : multiple = True for element in b : if element % number != 0 : multiple = False break if multiple : count += 1 return count
@srikanthganti94492 жыл бұрын
what is the time complexity?
@cgd16022 жыл бұрын
worst case O(n^2)
@maxz9992 жыл бұрын
O((a+b)d) where d is min(b) - max(a)
@davidobodo36053 жыл бұрын
nice
@KindsonTheTechPro3 жыл бұрын
😊
@mahmoudelsayed88302 жыл бұрын
thx u sir
@binayapatel6 ай бұрын
This logic is not passing all the test case of HankerRank