mirror of
https://github.com/codeflash-ai/codeflash.git
synced 2026-05-04 18:25:17 +00:00
5 lines
117 B
Python
5 lines
117 B
Python
def concatenate_strings(n):
|
|
result = ""
|
|
for i in range(n):
|
|
result += str(i) + ", "
|
|
return result
|