From ee4280e15d1db1dff303d9a4229a2b6319fcd801 Mon Sep 17 00:00:00 2001 From: Josh Harris <81477294+JHarrisJoshua@users.noreply.github.com> Date: Mon, 6 Feb 2023 08:20:45 -0500 Subject: [PATCH 1/2] Update hash_map_sc.py --- hash_map_sc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hash_map_sc.py b/hash_map_sc.py index 25adaba..fc9e18c 100644 --- a/hash_map_sc.py +++ b/hash_map_sc.py @@ -11,7 +11,7 @@ class HashMap: def __init__(self, capacity: int, function) -> None: """ - Initialize new HashMap that uses + Initialize a new HashMap that uses separate chaining for collision resolution """ self._buckets = DynamicArray() From 5ec92a5c454f8d7d1b7a767bf6bcaec24109688d Mon Sep 17 00:00:00 2001 From: Josh Harris <81477294+JHarrisJoshua@users.noreply.github.com> Date: Mon, 6 Feb 2023 13:26:49 +0000 Subject: [PATCH 2/2] refresh workflow --- hash_map_sc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hash_map_sc.py b/hash_map_sc.py index fc9e18c..c6b14a7 100644 --- a/hash_map_sc.py +++ b/hash_map_sc.py @@ -2,7 +2,7 @@ # Name: Josh Harris # Course: Data Structures # Description: The program represents an implementation of the HashMap using -# chaining to resolve collisions +# chaining to resolve collisions. """ from hashmap_helpers import (DynamicArray, LinkedList, hash_function_1, hash_function_2)