All ChallengesLoading...
Not Solved

Add comma to large number

Write a function that takes a list of integers and concatenates them into a single comma-separated string.
Beginner
sample input: [1000, 2000, 3000] 
sample output: 1000,2000,3000
Loading...
Test Output: