알고리즘 21 -Beginner - Lost Without a Map

jabae·2021년 10월 17일
0

알고리즘

목록 보기
21/97

Q.

Given an array of integers, return a new array with each value doubled.

For example:

[1, 2, 3] --> [2, 4, 6]

A)

function maps(x){
  return x.map(i => i * 2);
}
profile
it's me!:)

0개의 댓글