我最近检查了HackerEarth上的javascript(nodejs)。它已经编写了以下代码。
function main(input) {
//Enter your code here
}
process.stdin.resume();
process.stdin.setEncoding("utf-8");
var stdin_input = "";
process.stdin.on("data", function (input) {
stdin_input += input;
});
process.stdin.on("end", function () {
main(stdin_input);
});
如何阅读带有样本输入的测试用例,例如
A)First line contains no. of test cases and size of array.
Next T lines contains array content.
- 3 4
- 32 33 12 2
- 1 23 34 3
- 65 2 21 11
B)The first line contains the number of testcases, T.
Next, T lines follow each containing a long string S.
- 3
- SUVKITSU
- 651SUVOMN
- SAHJ8HSAU6
所以,总而言之,我的问题是如何在进行竞争性编程的同时在javascript(nodeJs)中读取输入整数,字符串和数组?
答案 0 :(得分:0)
查看JavaScript的字符串方法,例如.split()
和.substr()
。