https://leetcode.com/problems/count-the-digits-that-divide-a-number


Success


```python
class Solution:
    def countDigits(self, num: int) -> int:
        counting = 0
        for i in str(num):
            if (num % int(i)) == 0:
                counting += 1
        return counting
```
