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.
.
Old kata syndrome, re-ranking them is not possible now due to the excessive amount of solutions that is associated with legacy code in DB, but it will be addressed soon as admins and the CW team are aware of this ^^
some mistakes that i see:
size
bytes, but then you accessret[size]
, this is an out-of-bounds access, the last character is atret[size - 1]
ceil(n / 2)
is equivalent to justn / 2
, since you are diving 2 integers\n
), but you are not adding oner
,g
andb
can be negative. The format"%x"
takes an unsigned integer as input, so you are printing a very large number after reinterpretation of the signed int as un unsigned int. Since the output string has enough room for 6 characters + 1 nul terminator, you are writing out-of-bounds, which causes chaos in the tests suitsprintf(h, "%c", '\0');
appends 2 nul characters to the string, becausesprintf()
always nul terminates its target string after finishing the printing. same problem as above, you are writing out-of-boundsSee the initial code in C:
That's a problem with your code, not a kata issue, use
Question
label next time.