First solution in Clear category for Count Divisibles in Range (simplified) by kazuki.h
def count_divisible(n, k): return n//k
March 23, 2024