[ํ๋ก๊ทธ๋๋จธ์ค] ๋ฌธ์์ด ์ถ๋ ฅํ๊ธฐ (JavaScript ๋ฌธ์ ํ์ด)CS/Solutions2023. 12. 13. 19:40
Table of Contents
๋ฐ์ํ
๐ ๋ฌธ์ ์ค๋ช
๋ฌธ์์ด str
์ด ์ฃผ์ด์ง ๋, str
์ ์ถ๋ ฅํ๋ ์ฝ๋๋ฅผ ์์ฑํด ๋ณด์ธ์.
๐ ์ ํ์ฌํญ
- 1 ≤
str
์ ๊ธธ์ด ≤ 1,000,000 str
์๋ ๊ณต๋ฐฑ์ด ์์ผ๋ฉฐ, ์ฒซ์งธ ์ค์ ํ ์ค๋ก๋ง ์ฃผ์ด์ง๋๋ค.
๐ฅ ์ ์ถ๋ ฅ ์
์ ๋ ฅ #1
HelloWorld!
์ถ๋ ฅ #1
HelloWorld!
๋ฐ์ํ
๐ป ๋์ ํ์ด
readline
๋ชจ๋์ ์ฌ์ฉํ์ฌ ์ฌ์ฉ์์ ์ ๋ ฅ์ ๋ฐ์ต๋๋ค.- ์
๋ ฅ๋ ๋ฌธ์์ด์
input
๋ณ์์ ์ ์ฅํฉ๋๋ค. input
๋ณ์์ ์ ์ฅ๋ ๋ฌธ์์ด์ ์ฝ์์ ์ถ๋ ฅํฉ๋๋ค.
const readline = require('readline');
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});
let input = [];
rl.on('line', function (line) {
input = line;
}).on('close',function(){
console.log(input)
});
๋ฐ์ํ
'CS > Solutions' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
@์ค๋น :: console.log("Hello, World!");
ํฌ์คํ ์ด ์ข์๋ค๋ฉด "์ข์์โค๏ธ" ๋๋ "๊ตฌ๋ ๐๐ป" ํด์ฃผ์ธ์!