You are viewing a single comment's thread. Return to all comments →
My entry:
return len([x for x in list(map(int, str(n))) if x != 0 and n % x == 0])
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 →
My entry: