Skip to content

Latest commit

 

History

History

subsequence-of-size-k-with-the-largest-even-sum

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

< Previous                  Next >

Related Topics

[Greedy] [Array] [Sorting]

Hints

Hint 1 Is the sum of two even numbers even or odd? How about two odd numbers? One odd number and one even number?
Hint 2 If there is an even number of odd numbers, the sum will be even and vice versa.
Hint 3 Create an integer array to store all the even numbers in nums and another array to store all the odd numbers in nums. Sort both arrays.