요약 11652 주어진 숫자 카드 중에서 가장 개수가 많은 카드를 출력하라. 최대 개수가 동일한 카드가 여러 개라면 카드 번호가 더 작은 카드를 출력. 풀이 내 풀이 const readline = require("readline"); const rl = readline.createInterface({ input: process.stdin, output: process.stdout, }); let input = []; rl.on("line", function (line) { input.push(line); }).on("close", function () { const [N, ...cards] = input.map(BigInt); cards.sort((a, b) => (a b ? ..