Kotlin doubt on Array import | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Kotlin doubt on Array import

Hi sir, I'm new to coding i dont no what to import to avoid error in following code... Please help me! https://code.sololearn.com/c7sg4O2sA9op/?ref=app

10th Oct 2019, 6:54 AM
KAAMIL AHAMADH S
KAAMIL AHAMADH S - avatar
1 Answer
+ 3
x.toString() would avoid the import, but you won't like the output. x.joinToString(", ","[","]") will get a formated list. Parameters: string between values, string to start with, and string to end with. There are more and they all have default values so none need to be used.
18th Oct 2019, 4:54 PM
John Wells
John Wells - avatar