Problem A: 数组中只出现一次的数字 Problem A: 数组中只出现一次的数字
Time Limit: 1 Sec Memory Limit: 128 MB
Submit: 25 Solved: 16
[Submit] [Status] [Web Board] [Creator:]Description
一个整型数组里除了两个数字之外,其他的数字都出现了两次。请写程序找出这两个只出现一次的数字。
输入的第一行代表数字长度
第二行是数组的所有值
Input
8
2 4 5 1 3 4 2 1
Output
5 3
Sample Input
8
3 4 5 4 1 5 8 3
Sample Output
1 8
[Submit][Status]