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 may have commented another version of this solution, but I do not see how primes are recomputed. First, the upper bound is computed, then all primes until the upper bound.
I was throw off by the set. You create the divisors in order anyways, so I don't see why you want to be returning a BTreeSet over a standard Vec (except perhaps to express that the result is sorted?).
Also, you are recomputing a lot of primes in is_prime, pregenerating all the primes up to the upper_bound in get_all_divisors takes this from worst case O(N^2 sqrt(N) ) to O(N sqrt(N))
Otherwise, I like the functional style, I really need to practice using it myself.