Skip to content

Instantly share code, notes, and snippets.

View EzequielBurg's full-sized avatar
💻
Programming

Ezequiel Burg EzequielBurg

💻
Programming
  • Devyx TECH
View GitHub Profile
@EzequielBurg
EzequielBurg / Hash.py
Last active October 12, 2019 20:36 — forked from divanibarbosa/Hash.py
Hash Table in Python - Tabela Hash em Python usando classe
# Tabela Hash sem tratamento de colisões
# Criado por: profa. Divani Barbosa Gavinier
# Curriculo Lattes: http://lattes.cnpq.br/8503400830635447
class Hash:
def __init__(self,tam):
self.tab = {}
self.tam_max = tam