diff --git a/README.md b/README.md index 833f547b..a0315a56 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,7 @@ Also, my articles on the Medium platform can be found [here](https://medium.com/ ## 🧩 Data Structures - [Sorting](data-structure/sorting-popular.ipynb): a guide to popular sorting algorithms in Python +- [Hashing](data-structure/hashing.ipynb): an introduction to hashing, its applications, and Python implementation ## :mag: EDA (Exploratory Data Analysis) diff --git a/data-structure/hash.ipynb b/data-structure/hashing.ipynb similarity index 100% rename from data-structure/hash.ipynb rename to data-structure/hashing.ipynb diff --git a/website/docs/data-structure/hash.md b/website/docs/data-structure/hashing.md similarity index 99% rename from website/docs/data-structure/hash.md rename to website/docs/data-structure/hashing.md index 36df78c4..a9748385 100644 --- a/website/docs/data-structure/hash.md +++ b/website/docs/data-structure/hashing.md @@ -1,8 +1,9 @@ --- +description: An introduction to hashing, and its implementation in Python tags: [Hash, Data Structures, Algorithms, Tutorial, Python] --- -# A Guide to Hashing +# Hashing ## Introduction