From c1970e2364648dcac5ef8b6a552e3414a65abc6e Mon Sep 17 00:00:00 2001
From: Alrik Appelfeldt <alrap417@student.liu.se>
Date: Wed, 28 Feb 2024 20:16:09 +0000
Subject: [PATCH] Delete linked_list.h

---
 Uppgift-2-Lista/linked_list.h | 33 ---------------------------------
 1 file changed, 33 deletions(-)
 delete mode 100644 Uppgift-2-Lista/linked_list.h

diff --git a/Uppgift-2-Lista/linked_list.h b/Uppgift-2-Lista/linked_list.h
deleted file mode 100644
index 21ca74f..0000000
--- a/Uppgift-2-Lista/linked_list.h
+++ /dev/null
@@ -1,33 +0,0 @@
-#include<iostream>
-using namespace std;
-
-
-
-
-
-class List {
-public:
-
-List();
-
-
-void Insert_Head_Node(int value);
-void Insert_Tail_Node(int value);
-
-
-class Node {
-public:
-    int value;
-    Node* next;
-    Node* previous;
-  
-};
-
-void printlist(Node* head);
-Node* head{nullptr};
-Node* tail{nullptr};
-
-
-};
-
-
-- 
GitLab