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.
You'r looking for :
f(n+1) = f(n) + 2n+1
where f(0) = 1
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
Actualy, in pokemon effectiveness have alway the same multiplicators, x0 x0.5 x1 x2.
So with that kind of configuration file your types don't need to know their effectiveness on all other types :
'fire' : {
supp : ['grass'],
less : ['fire', 'water']
}
It's easier to maintain.
Then you need a litle function to get effectiveness. See my solution ;p