You are viewing a single comment's thread. Return to all comments →
def findDigits(Num:int): numbers = list(str(Num)) count = 0 for num in numbers: num = int(num) if num == 0: continue elif Num % num == 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 →
Easy Solution