Город МОСКОВСКИЙ
00:01:24

Codewars CSV representation of array

Аватар
JS Подробности
Просмотры:
30
Дата загрузки:
29.11.2023 12:08
Длительность:
00:01:24
Категория:
Технологии и интернет

Описание

Create a function that returns the CSV representation of a two-dimensional numeric array.

Example:

input:
[[ 0, 1, 2, 3, 4 ],
[ 10,11,12,13,14 ],
[ 20,21,22,23,24 ],
[ 30,31,32,33,34 ]]

output:
'0,1,2,3,4\n'
+'10,11,12,13,14\n'
+'20,21,22,23,24\n'
+'30,31,32,33,34'

Array's length more then 2.


More details here: https://en.wikipedia.org/wiki/Comma-separated_values
#fundamentals #arrays #basicLanguageFeatures #LanguageFeatures #javascript #fuzetox

Рекомендуемые видео