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.
Consider storing the user's answers in
constexpr
variables then using the regularAssert::That
syntax instead ofstatic_assert
s. This way, the program still checks compile time behavior, but can still compile and provide meaningful feedback (viaExtraMessage
) instead of just refusing to compile and giving a vague assertion failure message.Why is
seq_max_v
not a function? Is it designed this way specifically for the challenge?