2018-09-22 Building a Hash Table MotivationHash tables are a very fundamental data structure. As a programmer you’ve probably used it a bunch. When you use a dictionary in Python, you’re using one, or a map in C++, or an object in JavaScript,…the list goes on. References Grokking Algorithms Designing a fast Hash Table https://www.cs.cornell.edu/courses/cs3110/2014fa/lectures/13/lec13.html Newer System Design Notes Older Third Maximum Number