You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.