- 발행일
[99클럽] 99클럽 코테 스터디 6일차 + 스택과 큐
let a = 1; let b = 2;
let a = 1; let b = 2;
push(x) { this.q2.push(x); while (this.q1.length) { this.q2.push(this.q1.shift()); } [this.q1, this.q2] = [this.q2, this.q1]; }
push(x) { this.stackIn.push(x); }
const readline = require('readline');
const rl = readline.createInterface({ input: process.stdin, output: process.stdout });