First solution in Speedy category for Count Digits by Pactp
count_digits = lambda text: sum(ch.isdigit() for ch in text)
March 16, 2023
Comments: