Skip to content

Commit b3d42db

Browse files
authored
format
1 parent 26826ba commit b3d42db

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

algorithms/data-structures/DoublyLinkedList.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@ class DoublyLinkedListTest
137137
static void Main(string[] args)
138138
{
139139
DoublyLinkedList<int> list = new DoublyLinkedList<int>();
140+
140141
list.InsertAtEnd(1);
141142
list.InsertAtEnd(2);
142143
list.InsertAtEnd(3);
@@ -149,4 +150,4 @@ static void Main(string[] args)
149150
Console.WriteLine("Searching for 10, found: {0}", list.Search(10));
150151
Console.WriteLine("Linked list content: {0}", list.ToString());
151152
}
152-
}
153+
}

0 commit comments

Comments
 (0)