Compute the asymmetric difference between two lists while preserving order and multiplicity.
Constraints
Example
```python >>> difference([1, 2, 2, 3], [2]) [1, 3] >>> difference([4, 5, 6], [4]) [5, 6] >>> difference([1, 2, 3], []) [1, 2, 3] >>> difference([], [1, 2]) [] ```
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints