Add all of them to the set. Then subtract from the set filled 1-100. Here is an example for 0-9:
>>> set(range(10)) - set([1, 4, 5, 6, 8, 2])
set([0, 9, 3, 7])
>>>
I had it [1, 4, 5, 6, 8, 2]. To find out which numbers in the range 0-9 are missing, I created a set with all 0-9, and then subtracted the set from it [1, 4, 5, 6, 8, 2]. And they found out that they were [0, 9, 3, 7]missing.
Kits for this are quite effective. As an added benefit, duplicates will be handled gracefully.
source
share