728x90 반응형 queue weaving1 큐 합치기(Queue Weaving) References 아래 링크의 강의 중 Section 18. Underwater Queue Weaving의 내용을 추려 이번 글을 작성하였습니다. The Coding Interview Bootcamp: Algorithms + Data Structures on Udemy Solution // ./queue.js class Queue { constructor() { this.data = []; } add(record) { this.data.unshift(record); } remove() { return this.data.pop(); } peek() { return this.data[this.data.length - 1]; } } module.exports = Queue; // ./index.js cons.. 2022. 4. 5. 이전 1 다음 728x90 반응형