Not 8 in C
Approved by someone.
Haskell translation
This is not 8ky friend. More like 7.
Cool kata )))
Hello, my solution seems to work. But test fails with this message: expected [ 6, 7, 8, 9, 10, 11, 12, 13, 14 ] to deeply equal [ 6, 7, 8, 9 ]. What does it mean? (JS) Thanks in advance!
Chai + assert for CoffeeScript
Approved
python new test framework is required. updated in this fork
Tell me what the error is - it is expected that [] will be deeply equal to [2]
Thanks!
Thank you both, I got stuck at the time and now when I came back to check your comments, I didn't even understand my approach.
It's been a month since I asked for help and now that I'm more used to this, I've been able to easily solve it, but I appreciate the help!
you are not allocating enough memory, and as a result you are writing out of bounds and corrupting the tests suite:
int *output = malloc(*sz_out);
*sz_out is the length of the array, not its size, because sizeof *output != 1.
*sz_out
sizeof *output != 1
Loading collection data...
Not 8 in C
Approved by someone.
Haskell translation
This is not 8ky friend. More like 7.
Cool kata )))
Hello, my solution seems to work. But test fails with this message: expected [ 6, 7, 8, 9, 10, 11, 12, 13, 14 ] to deeply equal [ 6, 7, 8, 9 ]. What does it mean? (JS) Thanks in advance!
Chai + assert for CoffeeScript
Approved
python new test framework is required. updated in this fork
Tell me what the error is - it is expected that [] will be deeply equal to [2]
Thanks!
Thank you both, I got stuck at the time and now when I came back to check your comments, I didn't even understand my approach.
It's been a month since I asked for help and now that I'm more used to this, I've been able to easily solve it, but I appreciate the help!
you are not allocating enough memory, and as a result you are writing out of bounds and corrupting the tests suite:
*sz_out
is the length of the array, not its size, becausesizeof *output != 1
.Loading more items...