Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Count Digits by tokiojapan55
def count_digits(text: str) -> int:
return len([c for c in text if c.isdigit()])
June 22, 2020