summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/01/02b/doubly_linked_list_test.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/01/02b/doubly_linked_list_test.c b/src/01/02b/doubly_linked_list_test.c
index ffc89cc..f5a1004 100644
--- a/src/01/02b/doubly_linked_list_test.c
+++ b/src/01/02b/doubly_linked_list_test.c
@@ -1,16 +1,6 @@
#include <cgreen/cgreen.h>
#include "doubly_linked_list.h"
-/*
-Swap two adjacent elements in a list by adjusting
-only the links (and not the data) using a:
-* singly-linked list
-* doubly-linked list
-*
-*
-* Write a method, `reverse()`, that reverses the order of elements in a `DLList`
-*/
-
Describe(DoublyLinkedList);
BeforeEach(DoublyLinkedList){ }
AfterEach(DoublyLinkedList){ }