()
| 54 | } |
| 55 | |
| 56 | function main() { |
| 57 | let input = ''; |
| 58 | process.stdin.setEncoding('utf8'); |
| 59 | process.stdin.on('data', (chunk) => { input += chunk; }); |
| 60 | process.stdin.on('end', () => { |
| 61 | try { |
| 62 | run(input); |
| 63 | } catch { |
| 64 | // Complexity check must never block — swallow all errors |
| 65 | } |
| 66 | process.exit(0); |
| 67 | }); |
| 68 | } |
| 69 | |
| 70 | function run(input) { |
| 71 | let event; |
no test coverage detected