Play with array Min-Max
An array is provided. For example, a= [ 2,1,11,4,5,13]
Create an array from a like this way, out= [ 1,11,2,13,4,5]
➢ 1st take...
Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...