MCPcopy Create free account
hub / github.com/careercup/CtCI-6th-Edition-JavaScript /

Class

chapter04/util/Queue.js:4–4  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2var LinkedList = require('./LinkedList');
3
4class Queue {
5 constructor() {
6 this._list = new LinkedList();
7 }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected