Write code to return a list of tuples from a given list, where the sum of the tuple elements equals a specified sum. For example, given the list L = [1,2,3,4,5] and the sum S = 5, the output should be [(2,3),(1,4)].

AnswerBot
2y
Code to return list of tuples with elements summing up to given sum
Iterate through the list and check for pairs of elements whose sum equals the given sum
Add the pairs to a list of tuples and return t...read more
Help your peers!
Add answer anonymously...
>
Apple Software Development Engineer Test Interview Questions
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

