From ae9b2a46b6cdbdc91f763b6f7894bf00127c0c8a Mon Sep 17 00:00:00 2001 From: SerKin0 <71343548+SerKin0@users.noreply.github.com> Date: Wed, 25 Feb 2026 08:40:42 +0300 Subject: [PATCH] =?UTF-8?q?[1]=20=D0=A1=D0=BE=D0=B7=D0=B4=D0=B0=D0=BD?= =?UTF-8?q?=D0=B8=D0=B5=20=D1=84=D1=83=D0=BD=D0=BA=D1=86=D0=B8=D0=B8=20?= =?UTF-8?q?=D0=B3=D0=B5=D0=BD=D0=B5=D1=80=D0=B0=D1=86=D0=B8=D0=B8=20=D1=83?= =?UTF-8?q?=D0=B7=D0=BB=D0=B0=20create=5Fnode?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- skorohodovsa/task_1/linked_list.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 skorohodovsa/task_1/linked_list.py diff --git a/skorohodovsa/task_1/linked_list.py b/skorohodovsa/task_1/linked_list.py new file mode 100644 index 0000000..7351f7e --- /dev/null +++ b/skorohodovsa/task_1/linked_list.py @@ -0,0 +1,13 @@ + + +def create_node( + name: str, + phone: str, + next: dict = None +): + return { + 'name': name, + 'phone': phone, + 'next': next + } + \ No newline at end of file