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.
Yes, you are right. The description and the solution covers only the years and centuries AD.
The century 1 contains the years 1, 2, ... 100 AD. The description does not specify the format of years BCE or centuries BCE. Some notations are "-1", "1 B.C.", "1 BC" or "1 BCE". A correct solution without a description of the year/century format is not possible.
That's all very neat, but doesn't work for ages BCE.
This comment is hidden because it contains spoiler information about the solution
It's actually already a pointer, and
*text
dereferences it, same astext[0]
, but with the benefit of allowing the post-increment operator. (Hmm, willtext++[0]
work? I forget.)