mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 13:31:07 +00:00
7 lines
142 B
Python
7 lines
142 B
Python
|
from .hash_table import HashTable
|
||
|
|
||
|
class QuadraticProbing(HashTable):
|
||
|
|
||
|
def __init__(self):
|
||
|
super(self.__class__, self).__init__()
|