We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd77066 commit e78d7e7Copy full SHA for e78d7e7
1 file changed
data_structures/hashing/quadratic_probing.py
@@ -1,4 +1,4 @@
1
-
+#!/usr/bin/env python3
2
"""
3
Hashing is a technique that uses a hash function that converts a given number
4
or any other key to a smaller number and uses the small number as the index in a table called a hash table.
@@ -21,7 +21,6 @@
21
This process is repeated for all the values of i until an empty slot is found.
22
23
24
-#!/usr/bin/env python3
25
26
from .hash_table import HashTable
27
0 commit comments