if i just read my sum_digits function here, it makes sense in my head but it seems to be producing wrong results. Any tip?
sum_digits
def is_a_digit(s): \
One liner
sum_digits = lambda x: sum(int(y) for y in x if y.isdigit())