------
## 最终结论
```python
def overlapping(seq1, seq2):
    return not set(seq1).isdisjoint(set(seq2))
```