geekquad / AlgoBook

A beginner-friendly project to help you in open-source contributions. Data Structures & Algorithms in various programming languages Please leave a star ⭐ to support this project! ✨
https://discord.gg/ZMmwsWvsFj
MIT License
295 stars 300 forks source link

python hash map algorithm added with problem solution too. #538

Open luckyklyist opened 1 year ago

luckyklyist commented 1 year ago

HashMap uses multiple buckets and each bucket points to a Singly Linked List where the entries (nodes) are stored. The following contribution is about using a hash map algorithm using python.