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.