From 45a3a9b050761e0ee48c5d1e77e8ed127e0d6b0a Mon Sep 17 00:00:00 2001 From: bt3gl <138340846+bt3gl-google@users.noreply.github.com> Date: Sun, 30 Jul 2023 15:57:23 -0700 Subject: [PATCH] Update linked_list-double.py --- linked_lists/linked_list-double.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/linked_lists/linked_list-double.py b/linked_lists/linked_list-double.py index 327f1e7..1141419 100644 --- a/linked_lists/linked_list-double.py +++ b/linked_lists/linked_list-double.py @@ -1,4 +1,8 @@ -## create a doubly linked list +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +# author: bt3gl +# create a doubly linked list + class Node():