Answer to Question #269915 in HTML/JavaScript Web Application for prime

Question #269915

I want to pass all test cases

Sample Input 1

Kukatpally
Hyderabad

Sample Output 1

Kukatpally Hyderabad

"use strict";

process.stdin.resume();

process.stdin.setEncoding("utf-8");

let inputString = "";

let currentLine = 0;

process.stdin.on("data", (inputStdin) => {

 inputString += inputStdin;

});

process.stdin.on("end", (_) => {

 inputString = inputString.trim().split("\n").map((str) => str.trim());

 main();

});

function readLine() {

 return inputString[currentLine++];

}

/* Please do not modify anything above this line */

function createCabBooking(area, city) {

 /* Write your code here */

}

/* Please do not modify anything below this line */

function main() {

 const newArea = readLine();

 const newCity = readLine();

 const cabBooking1 = createCabBooking("Abids", "Hyderabad");

 cabBooking1.updatePickupPoint(newArea, newCity);

 console.log(`${cabBooking1.area} ${cabBooking1.city}`);

}





1
Expert's answer
2021-11-22T15:17:46-0500
"use strict";
process.stdin.resume();
process.stdin.setEncoding("utf-8");
let inputString = "";
let currentLine = 0;
process.stdin.on("data", (inputStdin) => {
 inputString += inputStdin;
});
process.stdin.on("end", (_) => {
 inputString = inputString.trim().split("\n").map((str) => str.trim());
 main();
});
function readLine() {
 return inputString[currentLine++];
}
/* Please do not modify anything above this line */
function createCabBooking(area, city) {
  console.log(area, city)
}
/* Please do not modify anything below this line */
function main() {
 const newArea = readLine();
 const newCity = readLine();
 const cabBooking1 = createCabBooking("Abids", "Hyderabad");
 cabBooking1.updatePickupPoint(newArea, newCity);
 console.log(`${cabBooking1.area} ${cabBooking1.city}`);
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS