Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Count Digits by melitaele
def count_digits(text: str) -> int:
return len([i for i in text if i.isdigit()])
April 15, 2021
Comments: