Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
How to print an array in Java google is your friend, remember to write your imports.
If it doesn't compile, it's not the print statements that cause it, but something else in your code. Also you should specify the language you're using with these kind of questions.
I'm assuming you're using java, so in general you can use
System.out.println()
for primitives. To print arrays you can use something like:System.out.println(Arrays.toString(arr))
(don't forget to include importjava.util.Arrays
at the top)Yes exactly, facing the same problem
Yes, printing it yourself.