This commit is contained in:
nim-ka
2021-12-29 03:32:06 -05:00
parent e7ecba88ef
commit eb702d1e22
8 changed files with 34 additions and 6 deletions

4
dll.js
View File

@@ -29,6 +29,8 @@ class DLLNode {
}
}
window.DLLNode = DLLNode
class DLL {
constructor(a = []) {
this.h = new DLLNode()
@@ -170,3 +172,5 @@ class DLL {
toString() { return this.toArray().toString() }
}
window.DLL = DLL