Computer Science, asked by kerimovacinare2407, 2 months ago

write a phyton program to calculate How many positive integers from interval [m, n] have the least sum of digits?​

Answers

Answered by peehuthakur
1

Answer:

Python Code: def sum_digits_string(str1): sum_digit = 0 for x in str1: if x.isdigit() == True: z = int(x) sum_digit = sum_digit + z return sum_digit print(sum_digits_string("123abcd45")) print(sum_digits_string("abcd1234"))

Similar questions