From a0742dee60cde5fd65958cc4b82daec729ab66af Mon Sep 17 00:00:00 2001 From: Andrew Scott Date: Tue, 31 May 2022 23:16:48 -0400 Subject: [PATCH] Update README --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b2d1cf5..482eff9 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ # HashMaps -HashMaps in Python using (Separate) Chaining, and Open Addressing with Quadratic Probing \ No newline at end of file +These HashMap implementations were my final project for **CS 261 - Data Structures** +at Oregon Sate. hash\_map\_oa.py features open addressing with quadratic probing +while hash\_map\_sc.py uses separate chaining.