• + 2 comments

    I think test case 6 is incorrect. Given: n=5 k=1 s = [1 2 3 4 5] The "correct" output is 1 but all whole numbers are divisible by 1. Shouldn't the actual answer be 0 since a subset of size zero has no elements divisible by k?

    • + 0 comments

      Maximum size of subarray that satisfy the conditions is 1 because : it is the minimum possible subset of any array & (1+2) / 1, (1+3) / 1, (1+4) / 1, (1+5) / 1 ..... are all factors of 1.

    • + 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.