myArray of numbers, write a function to square the alternate numbers of the myArray, starting from index 0 using the array method map.Input
The input will be a single line containing an array myArray
Output
The output should be a single line containing an array with alternate numbers squared
Constraints
Each value in the array must be a number
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 ]
1
Expert's answer
2021-03-08T07:37:54-0500
Dear Chandra sena reddy, your question requires a lot of work, which neither of our experts is ready to perform for free. We advise you to convert it to a fully qualified order and we will try to help you. Please click the link below to proceed: Submit order
Comments
Leave a comment