"sri2097" <[EMAIL PROTECTED]> writes:
> Hi all, I have written a Link list implementation in Python (Although
> it's not needed with Lists and Dictionaries present. I tried it just
> for the kicks !). Anyway here is the code -
Generally very nice.
> # Creating a class comprising of node in Link L
Hi all, I have written a Link list implementation in Python (Although
it's not needed with Lists and Dictionaries present. I tried it just
for the kicks !). Anyway here is the code -
# Creating a class comprising of node in Link List.
class linklist:
def __init__(self, data=None,link=None):