From c58a48a70cd53bf56cd4b4461761260396d552f7 Mon Sep 17 00:00:00 2001 From: FuzzLightyear <71232482+FuzzLightyear@users.noreply.github.com> Date: Mon, 17 Nov 2025 14:46:42 -0500 Subject: [PATCH] Add author and date comments to linked_list.py Add header to very old file --- src/pythondatastructures/old/Actual/linked_list.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/pythondatastructures/old/Actual/linked_list.py b/src/pythondatastructures/old/Actual/linked_list.py index e1ecaa4..064e019 100644 --- a/src/pythondatastructures/old/Actual/linked_list.py +++ b/src/pythondatastructures/old/Actual/linked_list.py @@ -1,3 +1,6 @@ +#Author FuzzLightyear, aka. Fuzzifier, aka. SudoScientist +#Date 12/27/2020 +#Linked List with added features. Stack, Queue built off of LinkedList FIELDS = { "forward": "nxt",