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.
Thanks! I just solved it, everything's cool. I'll mark this as resolved.
fixed! All tests have passed, warnings fixed also
Just completed the kata in C. It has a bunch of issues with compilation (warnings, missing includes), but it is compilable and solvable in C. stderr looks nasty tho.
Same issue here! Cannot compile and run code. Please fix.
I also get a bunch of warnings about comparing integers of different types - maybe just needs a bit of casting?
C language, little mistake in test program:
Not an issue of the kata but of your code. Print the input to see the test input.
You should read thishttps://github.com/codewars/codewars.com/wiki/Troubleshooting-your-solution.
Not an issue. Print the inputs, and debug your solution.
This comment is hidden because it contains spoiler information about the solution
Thx everyone for participation! Sadly i still don't understand what sorcery is this, but my verbose and bloated solution is working now!
Tho i still pursue the goal to understand everything is going on in c.
mmm, possible yes. Just note that when I said a change on version of the runner, I wasn't talking about the version chosen in the edit panel but the one of the stuff that is actually running the whole environment.
(edit: ...but that might end up in the very same behavior, yeah... :/ )
As far as I know, only when there are changes in the desription or in the codes, not when it is a simple version change:-(
you can get those info through the "revisions" page in the edit panel. The only thing you cannot know, iirc, is who approved a transaltion.
For C I came back to my translation, edited and published.
C++ fixed.
@hobovsky, Update: don't you think it would be good to know who approves a kata and who update it?
Warnings started appearing for both C and C++ kata after tools got updated to CLang 8. I think compilation flags for warnings (
-Wall
?) were added for CLang 8, but they are not there for other versions of C and C++ runtimes. That's why so many kata suddenly got affected.You might want to take a look also at oher C and C++ translations of your kata, because they may have lots of warnings now, even if there were none in the past.
PS. initial setup of C++ version does not compile (
vector
header is not included, type namevector
is used instead ofstd::vector
), would you consider fixing this too?Loading more items...