Skip to content

Commit e78d7e7

Browse files
committed
Fix shebang on the first line
1 parent dd77066 commit e78d7e7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

data_structures/hashing/quadratic_probing.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
#!/usr/bin/env python3
22
"""
33
Hashing is a technique that uses a hash function that converts a given number
44
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 @@
2121
This process is repeated for all the values of i until an empty slot is found.
2222
2323
"""
24-
#!/usr/bin/env python3
2524

2625
from .hash_table import HashTable
2726

0 commit comments

Comments
 (0)