AI-powered search & chat for Data / Computer Science Students

Learn more with these recommended learning resources

Hashing in Python

 Analytics Vidhya

You are building a cool application/website with your team and in some instances, you have to store user passwords in the database and need to have secure

Read more at Analytics Vidhya

Hash Tables and Hash Functions in Python: A Deep Dive

 Python in Plain English

I’ve come across hash tables while I was reading about dict and set objects in Python. Under the hood, the dict and set uses hash table for assigning a key to a value/data. Hash tables helps dict and…...

Read more at Python in Plain English

Sorting and Hash Tables — Python

 Level Up Coding

While following the brute force approach, for each element of the array, it goes through all the other elements to check if any duplicate is present or not. The pseudocode for this can be written as…

Read more at Level Up Coding

Up Your Coding Skills With Python: Hashing

 Python in Plain English

What hashing is and why is it being used in Python Continue reading on Python in Plain English

Read more at Python in Plain English

Hash tables

 Super Study Guide

General concepts ​ Hash set ​ A hash set is a data structure that stores a collection of unique values { s 1 , . . . , s n } \{s_{1}, ..., s_{n}\} { s 1 ​ , ... , s n ​ } with fast search times. A has...

Read more at Super Study Guide

Hash Tables Explained

 Towards Data Science

When given large datasets defined by pieces of information that are related to other pieces of information, what are some ways we can store and retrieve information efficiently? To manage large…

Read more at Towards Data Science

How to Use Python’s “hashlib” Module for Secure Hashing

 Python in Plain English

Protect Your Data with Python’s Top-Tier Hashing Technology Photo by FLY:D on Unsplash The “hashlib” module in Python provides a set of functions for generating cryptographic hash values. Cryptograph...

Read more at Python in Plain English

Data Structures and Hash Tables

 Level Up Coding

Hash tables or hash maps or maps or dictionaries or objects. There are many different names for a hash table. But they are very similar, with some tiny variations in certain languages. Hashes use a…

Read more at Level Up Coding

Hash Tables

 Codecademy

A hash table is an implementation of an associative array, a list of key-value pairs that allow you to retrieve a value via a key. Internally a hash table utilizes a hash function to transform a key v...

Read more at Codecademy

The Basics of Hash Table

 Towards Data Science

Those of us who’ve lived reasonably long enough must know or at least have seen a yellow page. Yup! You’re right. It is the thick yellow book containing directories of businesses and their phone…

Read more at Towards Data Science

Building a Hash Table in Python and Thoughtful REST API Design | Real Python Podcast #104

 Real Python

Do you understand how a hash table works? What if you could learn about building one while practicing test-driven development? What are best practices when designing a REST API? This week on the show,...

Read more at Real Python

5. Hash Tables

 Open Data Structures in Java

Hash tables are an efficient method of storing a small number, , of integers from a large range . The term hash table includes a broad range of data structures. The first part of this chapter focuses ...

Read more at Open Data Structures in Java

Hashtable

 Essential Java

Introduction Hashtable is a class in Java collections which implements Map interface and extends the Dictionary Class Contains only unique elements and its synchronized

Read more at Essential Java

An Introduction to Python Data Structures — Hash-map, Tree, Graph

 Python in Plain English

In the first part of this article, we covered the basics of data structures and linear data structures such as Stack, Queue, Linked-List, Arrays. A data structure in which data is not stored in a…

Read more at Python in Plain English

Data Structures 1: Hash Tables

 Towards Data Science

Hash tables are an effective way to implement dictionaries. Before diving straight to the topic of hash tables, having a grasp of the background/context would help us understand the concepts related…

Read more at Towards Data Science

What is Hashing and How To Use It In Python

 Python in Plain English

Hashing is a process of converting input data (or a ‘key’) into a fixed-size string of bytes using a mathematical algorithm. The output of this process is called a hash value or simply a hash . The ke...

Read more at Python in Plain English

Handwriting a HashTable: Building a Strong Foundation for Algorithms from Scratch

 Level Up Coding

1. Simplified Hash Table We encapsulate the hash table in a class, defining and declaring traversal operations as well as implementing construction and destruction: For the hash table implementation, ...

Read more at Level Up Coding

Python: Salting Your Password Hashes

 Level Up Coding

In a previous article, I shared how to secure users’ passwords. That article posits hashing users` plaintext passwords secures them. Well, that’s only a half-truth. Hashing passwords don’t entirely…

Read more at Level Up Coding

Hash table cheatsheet for coding interviews

 Tech Interview Handbook

Introduction ​ A hash table (commonly referred to as hash map) is a data structure that implements an associative array abstract data type, a structure that can map keys to values. A hash table uses a...

Read more at Tech Interview Handbook

5.3 Hash Codes

 Open Data Structures in Java

The hash tables discussed in the previous section are used to associate data with integer keys consisting of bits. In many cases, we have keys that are not integers. They may be strings, objects, arra...

Read more at Open Data Structures in Java

Design a HashMap — Day 1(Python)

 Analytics Vidhya

This is my first day at 365 days of coding challenge. I will try solving the most frequently asked questions in interviews from leetcode. The motive behind writing medium post is two-fold, b…

Read more at Analytics Vidhya

Advanced hash tables

 Super Study Guide

Bloom filters ​ Definition ​ A bloom filter B \mathcal{B} B is a space-efficient data structure that can check whether a given element x x x is: either potentially in the set or definitely not in the ...

Read more at Super Study Guide

An unacknowledged use of Hash Tables

 Analytics Vidhya

Hash tables are one of the best inventions in the programming world. Accessing values instantly from a pool of data elements can be a life-saver in speeding up programs most times. If I ask you the…

Read more at Analytics Vidhya

Python Unleashed: Cracking the Leetcode 100 — Arrays and Hashing

 Level Up Coding

Photo by Baard Hansen on Unsplash Python Unleashed: Cracking the Leetcode 100 — Arrays and Hashing LC Problems Introduction: In this article, we’re going to learn about hashing techniques and their un...

Read more at Level Up Coding