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.
Ok understood, thanks man
This comment is hidden because it contains spoiler information about the solution
i have no idea about .get() function. Can you explain me what does "k" variable do there?
I love your precision in calling it an antipyramid <3.
Also, that's my favourite new word for the day.
Figured out how to do it with GCC's register variables. Looks like Clang doesn't support those (at least not in the same way)
Figured out how to do it with inline assembly. Less elegant, but I got it to work with Clang locally. But I was using a single
__asm__
call with multiple instructions and\n\t
, so the "no backslashes" rule hit. So I threw up my hands and extended the parameter list instead...