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.
This comment is hidden because it contains spoiler information about the solution
The line
in
Preloaded
causes a simpleunfold goldbach
/rw goldbach
to fail. How might one work around this?from_array
should really be simplyreduce(cls, reversed(arr), None)
, but it cannot, becauseNone
is interpreted as no initializer!Evidently some tests are missing.
(This 'solution' does not check that the 'n' and 'B' occur at the same index.)
Tests fail on maximally polymorphic solutions, i.e.
[a] -> [a] -> Bool
.This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution