You are viewing a single comment's thread. Return to all comments →
def findDigits(n): # Write your code here s =str(n) l=[] count=0 for i in s: if int(i)!=0: l.append(int(i)) for j in l: if n%j==0: count+=1 return count
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 →