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.
did same way, but used instead of concat just result[i] = new string(' ', nFloors - i - 1) + new string('', i2+1) + new string(' ', nFloors - i - 1); Is string.Concat much faster than my way?
Damn, I completely forgot about bitwise operators! Nice solution bro.
Smart Solution but i would agree on not best practice, i think some of the other solutions provide more readable code.
I feel like I always take the longest path with my codes when I see other people's.
Very smart solution But I'm not sure it's a good practice. I mean, without context of requirements, with the naked eye or the first impression, it is not clear what the code is doing. What do you think?
great
This comment is hidden because it contains spoiler information about the solution
This is really the smart and correct way to handle this kata.