aboutsummaryrefslogtreecommitdiff
path: root/challenge-142/lubos-kolouch/python/ch-1.py
blob: a1af972179bca9406f341a37b215bcc73956f867 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env python
# -*- coding: utf-8 -*-

def count_divisors_with_last_digit(m, n):
    count = 0
    for i in range(1, m + 1):
        if m % i == 0 and i % 10 == n:
            count += 1
    return count


print(count_divisors_with_last_digit(24, 2))
print(count_divisors_with_last_digit(30, 5))