Metadata-Version: 2.4
Name: ashok-ll
Version: 0.1.2
Summary: A Python package for Linked List operations by Ashok
Author: Ashok Bongu
Author-email: bonguashok86@example.com
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-python
Dynamic: summary

# ashok-ll

A lightweight Python module for performing various singly linked list operations like reversing, deleting head/tail, etc.

## Example

```python
from ashok_ll import ListNode, reverseLL, printList

head = ListNode(1, ListNode(2, ListNode(3)))
printList(head)

head = reverseLL(head)
printList(head)
