Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Shortest possible solution in Creative category for Count Digits by maartiin01
def count_digits(text: str) -> int:
return sum(map(lambda char: int(char.isdigit()), text))
April 25, 2020