daco2020 2022. 11. 4. 18:47

Given an array of integers as strings and numbers, return the sum of the array values as if all were numbers.

Return your answer as a number.



sum_mix = lambda x: sum(map(int, x))