We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4160a21 commit 27f1ae4Copy full SHA for 27f1ae4
src/dataStructures/DoublyLinkedList.ts
@@ -13,7 +13,9 @@ class ListNode<T = any> {
13
export default class DoublyLinkedList<T = any> {
14
private readonly logger = new Logger();
15
16
+ private readonly head: ListNode<T> | null = null;
17
+
18
constructor() {
- this.logger.log("DoublyLinkedList created");
19
+ this.logger.log("DoublyLinkedList created" + this.head);
20
}
21
0 commit comments