문제링크: https://www.acmicpc.net/problem/10828 const array = require('fs') .readFileSync('example.txt') // 제출시: '/dev/stdin' .toString() .trim() .split('\n'); // 문자 -> 배열화 const stack = []; const result = []; const length = Number(array.shift()); // 14 제거, 명령 모음만 남음 for (let i = 0; i < length; i++) { const commandArray = array[i].split(' '); const command = commandArray[0]; switch ( command // if -..