You are viewing a single comment's thread. Return to all comments →
Solution from my side -
def findDigits(n): numList = list(str(n)) count = 0 for item in numList: if(int(item) != 0): if(n%int(item) == 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 →
Solution from my side -