Skip to content

Instantly share code, notes, and snippets.

View Drewlius's full-sized avatar
💭
Where did this all go wrong?

Drewlius Drewlius

💭
Where did this all go wrong?
View GitHub Profile
@Drewlius
Drewlius / Build_A_Hash_Table.py
Last active May 2, 2026 11:12
Building A Hash Table
class HashTable:
def __init__(self):
self.collection = {}
def hash(self, str):
self.str = str
result = 0
for char in self.str: