def test_array_diff(self): assert array_diff([1, 2, 2], [1]) == [2, 2]
def test_array_diff(self): assert array_diff([], [1, 2]) == []