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.
LMAO
so in C# string iterpreter thing "Codewars"+char.ConvertFromUtf32(255) specifically convert from utf32 returns this character ÿ and in total string is Codewarsÿ so what the heck should i do with this XD, thanks =)
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
Clever but slow nested loops would make things faster i think... TC of this is O(nLog(n)) and TC of nested loops is O(n^2) but clever solution and quick ngl...
tbh yeah TC is O(nLog(n)) and SC is O(n) when it can be done with nested loops with TC of O(n^2) and SC of O(1) but seems like less code
Well this code has worse TC and SC but I like it, less code buff i guess but may i ask is TC O(n log(n))? cause it uses OrderBy and why use Queue?
I so adorse your affort into this man XD
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution