From e65d65d6eb5ee2095095512b0bf42ea40b22caed Mon Sep 17 00:00:00 2001 From: marina <138340846+bt3gl-cryptographer@users.noreply.github.com> Date: Mon, 7 Aug 2023 16:44:39 -0700 Subject: [PATCH] Update hash_map_array.py --- hash_objects/hash_map_array.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hash_objects/hash_map_array.py b/hash_objects/hash_map_array.py index 6ec0031..6508815 100644 --- a/hash_objects/hash_map_array.py +++ b/hash_objects/hash_map_array.py @@ -35,7 +35,7 @@ class Bucket: class HashMap: - def __init__(self, key_space): + def __init__(self, size): self.size = size self.table = [Bucket() for _ in range(self.size)]