------
## 最终结论
```python
def test_distinct(numbers):
    return len(numbers) == len(set(numbers))
```