You can do this:
- Create a list, 0..1000.
- Shuffle the list. (See Fisher-Yates shuffle for a good way to do this.)
- Return numbers in order from the shuffled list.
So this doesn't require a search of old values each time, but it still requires O(N) for the initial shuffle. But as Nils pointed out in comments, this is asymptotically amortized O(1).
