Well, chained hash maps are significantly slower in the face of collisions due to the memory fetch latency hit to grab the next item... even ignoring the academic O(n) lookup, memory is often the primary perf constraint these days...
And for an exercise, it might be worth implementing linear probing just to get more learning experience out of it(?)