You are viewing a single comment's thread. Return to all comments →
def findDigits(n): count = 0 for i in str(n): if(i=='0'): continue elif(n % int(i) == 0): count += 1 return count
Seems like cookies are disabled on this browser, please enable them to open this website
I agree to HackerRank's Terms of Service and Privacy Policy.
Find Digits
You are viewing a single comment's thread. Return to all comments →
def findDigits(n): count = 0 for i in str(n): if(i=='0'): continue elif(n % int(i) == 0): count += 1 return count