Problem 1024. Doubling elements in a vector

Created by Abdelhak ARESMOUK

Given the vector A, return B in which all numbers in A are doubling. So for:

A = [ 1 5 8 ]

then

B = [ 1 1 5 5 8 8 ]

Tags

Problem Group

31 solvers submitted 55 solutions (1.77 solutions/solver).

Problem Comments