Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed extensions bug . #67

Merged
merged 3 commits into from
Jan 20, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixted the bug
  • Loading branch information
Kushal997-das authored Jan 19, 2021
commit 12b632045af742a614deb22269b60a8b0966db53
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
const readline = require("readline");
const rl = readline.createInterface(process.stdin, process.stdout);

let lineNo = 0;
let testCases;

const parseProblem = (line) => {
if (lineNo === 0 ) {
testCases = parseInt(line)
}
lineNo++;
};

rl.on('line', function (line) {
// console.log('Line number: ' + line);
if (lineNo === 0) {

}
});
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
4
1
2
3
4