• + 0 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