Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
sum is digit solution in Clear category for Count Digits by rodka81
def count_digits(text: str) -> int:
return sum(c.isdigit() for c in text)
March 13, 2020