Answer to Question #197048 in HTML/JavaScript Web Application for sai

Question #197048

Sample Input 1

[ 1, 2, 3, 4, 5 ]

Sample Output 1

[ 1, 2, 9, 4, 25 ]

Sample Input 2

[ 2, 4 ]

Sample Output 2

[ 4, 4 ]

"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 main() {

 const myArray = JSON.parse(readLine());

  

 /* Write your code here */

}


1
Expert's answer
2021-05-23T12:18:45-0400

For example, like this:

const arr1 = [ 1, 2, 3, 4, 5 ];
const arr2 = [ 2, 4 ];

function squareAlternate(arr) {
    return arr.map( (item, index) => {
        if (index % 2 == 0) {
            return item *= item;
        } else return item;
    })
}

console.log(squareAlternate(arr1));
console.log(squareAlternate(arr2));

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