HarendraSingh22 / Python-Guide-for-Beginners

A guide for Beginners in Python to refer
MIT License
52 stars 95 forks source link

Added raw code for a linked list class #165

Open chumba-wamba opened 3 years ago

chumba-wamba commented 3 years ago

Coded a linked list class with a lot of methods. Some of these methods are not optimised for edge cases (deleting the last element of an empty list can be considered as an edge case). Linked lists are powerful data structures and would be a good idea for beginners to grasp these concepts especially since the code also covers dunder methods and basic OOPS.