(copy of prob. 1024)
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 ]
Avoid using for/while loops.

Solution Stats

227 Solutions

97 Solvers

Last Solution submitted on Mar 15, 2026

Last 200 Solutions

Solution Comments

Show comments
Loading...