Python Challenges: Find two elements once in a list where every element appears exactly twice in the list
Write a Python program to find two elements once in a list where every element appears exactly twice in the list.
Explanation :

Sample Solution:
Python Code:
Sample Output:
[5, 3] [0, 6]
Flowchart:

Python Code Editor:
Contribute your code and comments through Disqus.
Previous: Write a Python program to find the single element appears once in a list where every element appears four times except for one.
Next: Write a Python program to add the digits of a positive integer repeatedly until the result has a single digit.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.