Skip to content

Instantly share code, notes, and snippets.

View gvirtuoso's full-sized avatar
🇧🇷

Guilherme Virtuoso gvirtuoso

🇧🇷
View GitHub Profile
@gvirtuoso
gvirtuoso / data_structure.py
Last active February 21, 2023 03:39
Python DataStructure challenge
import random
class MyTable:
def __init__(self, slots):
self.slots = slots
self.table = []
self.create_table()
self.current_slot = 0