about summary refs log tree commit diff
path: root/users/wpcarro/scratch/facebook/linked_list.py
blob: 1ae7061e839371b4bd8f37f741804cb29ef86fab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
class Node(object):
    def __init__(self, value=None, next=None):
        self.value = value
        self.next = next

    def __repr__(self):
        result = []
        node = self
        while node:
            result.append(str(node.value))
            node = node.next
        return 'LinkedList({xs})'.format(xs=', '.join(result))

def from_list(xs):
    head = Node(xs[0])
    node = head
    for x in xs[1:]:
        node.next = Node(x)
        node = node.next
    return head

list = from_list(['A', 'B', 'C'])