We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c922b60 commit 1a4f18eCopy full SHA for 1a4f18e
package.json
@@ -71,7 +71,7 @@
71
"nyc": "^11.2.1",
72
"ts-node": "^3.3.0",
73
"tslint": "^5.7.0",
74
- "typescript": "^2.6.0-dev.20171014",
+ "typescript": "^2.5.3",
75
"webpack": "^3.7.1",
76
"yargs": "^9.0.1"
77
}
src/ts/data-structures/doubly-linked-list.ts
@@ -132,6 +132,10 @@ export default class DoublyLinkedList<T> extends LinkedList<T> {
132
return -1;
133
134
135
+ getHead() {
136
+ return this.head;
137
+ }
138
+
139
getTail() {
140
return this.tail;
141
0 commit comments