Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
isdigit solution in Clear category for Sum Numbers by katnic
def sum_numbers(text: str) -> int:
R = text.split(' ')
D = [ int(i) for i in R if i.isdigit() ]
return sum(D)
Aug. 12, 2021
Comments: