Skip to content

Instantly share code, notes, and snippets.

View Casper-Smet's full-sized avatar

Casper Smet Casper-Smet

View GitHub Profile
@Casper-Smet
Casper-Smet / linked_list.py
Last active June 18, 2021 15:53
Linked list in Python based on MutableSequence
from collections.abc import MutableSequence
from dataclasses import dataclass
from typing import Any, Generator
@dataclass
class LinkedNode():
value: Any
next_node: "LinkedNode" = None