InterviewSolution
Saved Bookmarks
| 1. |
Imagine you had a set of weights {62, 93, 26, 52, 166, 48, 91, and 141}. Find subset that sums to V = 302.(a) {62, 48, 166, 52}(b) {141, 26, 52, 48}(c) {93, 26, 91, 48}(d) {62, 26, 166, 48}I have been asked this question during a job interview.I want to ask this question from Knapsack/ Merkle topic in chapter Public Key Cryptography and RSA of Cryptograph & Network Security |
|
Answer» RIGHT CHOICE is (d) {62, 26, 166, 48} To explain: {62, 26, 166, 48} =302. |
|