Check if N numbers with Even Sum can be selected from a given Array
Given an array arr[] and an odd integer N, the task is to check if N numbers can be selected from the array having even sum. Print Yes if possible. Otherwise print No. Examples: Input: arr[] = {9, 2, 3, 4, 1, 8, 7, 7, 6}, N = 5 Output: Yes Explanation: {9, 3, 1, 7, 6} are the N elements having even