01
No collisions — the case the O(1) promise assumes
What you know: Every key hashes to a different slot. The load factor α = n/m is below 1 and the hash spreads the keys evenly across the table.
Probe rule: h(k) = k mod m, α = n/m
Worked example: keys 0–5 into m = 8 with h(k) = k mod 8 → slots 0–5, one probe each: α = 0.75 and an average of exactly 1.00 probes
Open this case: No collision