fix python code 1
Login to zybooks and fix the code error for problem 8.1 and 8.2 function and code is written.
#Implement an Closed hash table with
#hash function hash(i,N)=i mod n
#Rehash Strategy: rehash(i,k,N)= (hash(i,N)+k) mod N
class ClosedHash:
def __init__(self,n):
return
def __str__(self):
return
def hash(self,i):
return
def rehash(self,i,k):
return
def insert(self,num):
return
def member(self,num):
return
def delete(self,num):
return