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.
Having the same issue here and it seems it is not corrected yet.
Your code isn't fast enough, you're using too many cycles for instance, you're checking all even numbers less than or equal
num/2
when testing if it's even already tells you it's not a prime number. It's a problem with your code, reduce the number of cycles of your loop.num/2
is too big.This comment is hidden because it contains spoiler information about the solution