Suppose array is: [1, 2, 5, 7, 10, 13, 17, 21] and you have to find 5 numbers whose sum is equal to 31. What would be the algorithm?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
closed as not a real question by talnicolas, iammilind, Alan Stokes, pst, talonmies Mar 9 '12 at 6:07
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
For a small array such as you have, efficiency doesn't mean much. The trick is to make it fast. Something like this would work (Written in Matlab, but it would translate to any language fairly easily):
|
|||||||||
|
