Coding Interview Problem | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 10

Coding Interview Problem

Try solving this problem and prepare yourself for a coding interview round. This problem was asked by Google. Given a list of integers S and a target number k, write a function that returns a subset of S that adds up to k. If such a subset cannot be made, then return null. Integers can appear more than once in the list. You may assume all numbers in the list are positive. For example, given S = [12, 1, 61, 5, 9, 2] and k = 24, return [12, 9, 2, 1] since it sums up to 24.

17th Feb 2018, 5:25 PM
Renata Tretyakova
7 Answers
+ 10
here's my try, but the O(n) is 2^n, (n<=N) N being total number of array elements so i ll try to write better recursive solutions as well, ( sadly I am weak in recursion) since all numbers are positive hence i have excluded array elements that are >= k , to keep working set small as possible. I am generating all possible subsets, if want only the first then uncomment the break statement https://code.sololearn.com/WLlQY42s9cWv/?ref=app
14th May 2018, 9:56 PM
Morpheus
Morpheus - avatar
17th Feb 2018, 7:36 PM
Nitzan
Nitzan - avatar
19th Feb 2018, 4:30 AM
sayan chandra
sayan chandra - avatar
+ 1
VcC if you can explain lamba. It will help others.
19th Feb 2018, 11:07 AM
Renata Tretyakova
+ 1
g=lambda x,y:f(x,y) equals def g(x,y): return(f(x,y)) It allows you to use a function without having to declare it. ex: max(a,key=lambda x:x*x-x+1) returns the maximum of array a using the criteria x*x-x+1 to compare elements. it is shorter thzn declaring f=xx-x+1 and then max(a,key=f)
19th Feb 2018, 11:36 AM
VcC
VcC - avatar
0
yoohooo !
19th Feb 2018, 10:52 AM
VcC
VcC - avatar