First solution in Clear category for Count Digits by ssk8
def count_digits(text: str) -> int: return sum([c.isnumeric() for c in text])
Feb. 24, 2021