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.
Math.Clamp! That's a new one for me, thanks for sharing
Knew there was some maths trickery for this, thank you. Great use of yield as well
This is great! One small thing I noticed though was GetDivisors has the potential to produce duplicate values.
100 for example returns 1 2 4 5 10 10 20 25 50 with the 10s duplicated,
something like:
if (i != 1 || number / i != i) yield return number / i;