mirror of
https://github.com/jlengrand/Coding4Interviews.git
synced 2026-03-10 08:11:24 +00:00
18 lines
282 B
Python
18 lines
282 B
Python
"""
|
|
Implementation of Linked Lists
|
|
|
|
@jlengrand
|
|
2013/12
|
|
"""
|
|
|
|
|
|
class SingleListItem():
|
|
"""
|
|
Item from a Single Linked List.
|
|
Contains only a previous next element, and a value
|
|
"""
|
|
def __init__(self, value, next):
|
|
self.value = value
|
|
self.next = next
|
|
|