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.
not a kata issue :-)
hahaha :D
One thing I spotted is your check for to many doors.
One door only takes two spaces, not three as in your solution.
Second problem is the space character, you try to set the empty spaces to the ASCII 32 character,
but because chars aren't reference types the values in the array are not changed.
If you set every character in 'secondLayerChar' to a space right at the beginning, your solution works.
One other hint, you can use string::repeat instead of for loops.