๐ฉ๐ป๐ป๋ฌธ์ ๋งํฌ [๋ฐฑ์ค 1260] DFS์ BFS (Javascript)) โ๏ธIdea Sketch 2021-07-30 1. ๋ฐฑ์ค ์ ๋ ฅ๊ฐ ๋ฐ๊ธฐ const fs = require('fs'); const stdin = (process.platform === 'linux' ? fs.readFileSync('/dev/stdin').toString() // ๋ฐฑ์ค์ ์ฝ๋ ์ ์ถํ์ ๋ : `5 5 3 5 4 5 2 1 2 3 4 3 1` // IDE์์ ์คํํ ๋ ).split('\n'); 2. ์๋ฐฉํฅ ๊ทธ๋ํ ์ ์ํ๊ธฐ let graph = Array.from({ length: n + 1 }, (v) => (Array.from({ length: n + 1 }, v => 0))); for (let i = 1; i (Ar..