Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Isdigit one line solution in Clear category for Count Digits by bostonz1
def count_digits(text: str) -> int:
return sum(i.isdigit() for i in text)
May 17, 2020
Comments: