def main():
    test = LinkedListNode(0)
    test.add(0)
    test.add(1)
    test.add(2)
    test.printNodes()

    remove_duplicates(test)
    remove_duplicates_alt(test)