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.
use the
question
tag to ask for help 🙃Please, say properly what the issue is. If you're suggesting that your code passes even though it shouldn't, the reason for that is you using a cheat (and one which may lead you to a ban).
Not a kata issue.
When you post an issue you imply that something is wrong in the kata tests. Instead you can post a question and see if somebody answer.
Maybe you shoud read https://github.com/codewars/codewars.com/wiki/Troubleshooting-your-solution.
There is no error in the tests.
Please before posting an issue look at the top of the page to see how many people passed the kata (14593 with Python); if there were errors somebody would already have seen them.
Print the input to see what happens.
Values in your variable
first
andsecond
could very easily shoot beyond the range ofint
data type leading to overflow. As in worst casesecond
=255*(256^3) + 255*(256^2) + 255*(256) + 255.Try after converting these variable to
long
.