Commit 7c7704b

mo khan <mo.khan@gmail.com>
2020-07-04 23:59:02
Remove comments
1 parent fd62033
Changed files (1)
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){ }