Add the ability to track hits, misses, and number of entries by adding `get_hits`, `get_misses`, and `get_num_entries` methods. To do this, add an instance variable `stats` that is a dictionary that tracks hits, misses, and the number of entries at the given time. On insertion, deletion, and lookup, update the number of entries, hits, and misses.