From ec4b556ba81a86f6d40dcf38cd7e3d38402b02cb Mon Sep 17 00:00:00 2001 From: jlengrand Date: Thu, 21 Nov 2013 08:19:49 +0100 Subject: [PATCH] Starts implementing a Hash Table --- 02_hash_maps/hm.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 02_hash_maps/hm.py diff --git a/02_hash_maps/hm.py b/02_hash_maps/hm.py new file mode 100644 index 0000000..3e2d4ad --- /dev/null +++ b/02_hash_maps/hm.py @@ -0,0 +1,9 @@ +""" +HashMap Table Implementation +@jlengrand +2013/11 +""" + +class HashMap(): + def __init__(): + self.size = 0