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.
Not sure what you're doing, but you're not supposed to brute force it. A normal solution should be able to go up to
n=100
without taking too long, there's no way you're getting that withO(n ^ 6)
.I'm not sure what the complexity is, but I believe it should be something between
O(n ^ 2)
andO(n ^ 3)
.