Question: python that takes in a list of integers aList and an Write a function two_sums (aList, integer target. target) The task is to find and
python

that takes in a list of integers aList and an Write a function two_sums (aList, integer target. target) The task is to find and return a tuple containing the two numbers in the list that sum up to the target number. See the example below. Sample run of the program: >>>two sums ([1,3,2,6,9], 4) >>>two sums ([3,5,2,6,9,1],5) (3, 2) Constraints and comments: * * . You may assume that there is exactly one pair of numbers that sum up to the target You may not assume that the integers in aList are unique Note thataList does not have a fixed size. Your program should be able to handle lists of any size
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
