Find the two non-repeating elements in an array of repeating elements
Answers
Answered by
0
Input : -1 2 -1 3 2
Output : 3
Explanation : The first number that does not
repeat is : 3
Input : 9 4 9 6 7 4
Output : 6
Similar questions