스택과 대응되는 큐문제도 풀이하였다. 스택 문제 풀이 경험이 있어 손쉽게 풀 수 있었다. const input = require('fs') .readFileSync('/dev/stdin') .toString() .trim() .split('\n'); const arr = input.slice(1); const que = []; // 큐에 쌓이는 값(안보이는 값) const answer = []; // "출력" 값 (보이는 값) function solution() { for (let i = 0; i < arr.length; i++) { let command = arr[i].split(' ')[0]; let num = arr[i].split(' ')[1]; switch (command) { case 'pus..