diff --git a/Uppgift-2-Lista/linked_list.h b/Uppgift-2-Lista/linked_list.h
deleted file mode 100644
index 21ca74f2af365ebbc4b0c83650b47ed1da10329b..0000000000000000000000000000000000000000
--- 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};
-
-
-};
-
-