You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/*const filePath = process.platform === 'linux' ? '/dev/stdin' : '/input.txt' 코드를 통해 백준 및 vscode에서 정상적으로 입력 파일을 받아올 수 있도록 조건을 달아줍니다.*/constfs=require('fs')constfilePath=process.platform==='linux' ? '/dev/stdin' : '/input.txt'letinput=fs.readFileSync(__dirname+filePath).toString().split('\n')...이후로직코드