알고리즘 85 - Testing 1-2-3

jabae·2021년 11월 1일
0

알고리즘

목록 보기
85/97

Q.

Your team is writing a fancy new text editor and you've been tasked with implementing the line numbering.

Write a function which takes a list of strings and returns each line prepended by the correct number.

The numbering starts at 1. The format is n: string. Notice the colon and space in between.

Examples:

number([]) // => []
number(["a", "b", "c"]) // => ["1: a", "2: b", "3: c"]

A)

var number=function(array){
  return array.map((d, i) => `${i + 1}: ${d}`);
}
profile
it's me!:)

0개의 댓글