Source code for kyu_7.sum_of_two_lowest_int.sum_two_smallest_int

#  Created by Egor Kostan.
#  GitHub: https://github.com/ikostan
#  LinkedIn: https://www.linkedin.com/in/egor-kostan/


[docs]def sum_two_smallest_numbers(numbers) -> int: """ Returns the sum of the two lowest positive numbers given an array of minimum 4 positive integers. :param numbers: :return: """ numbers.sort() return numbers[0] + numbers[1]