Return elements that appear in exactly one of two collections.
Constraints
Example
>>> symmetric_difference([1, 2, 3], [2, 3, 4]) [1, 4] >>> symmetric_difference([1, 1, 2], [2, 3]) [1, 3]
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints