You are viewing a single comment's thread. Return to all comments →
def findDigits(n): count_d = 0 for i in str(n): try: if n%int(i) == 0: count_d +=1 except: pass return count_d
Seems like cookies are disabled on this browser, please enable them to open this website
Find Digits
You are viewing a single comment's thread. Return to all comments →