• + 0 comments

    Given: n=5 k=1 s = [1 2 3 4 5], the correct output is 1 becase you can select just one numbe from s, such as s' = [2] The problem is required sum 2 numbers, in others words, any answer s' with length of 1 would be correct. I think this problem should metioned this in description.