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.
typedef struct list { struct list* next; int data; } list;
Each of those structs is really a
Node
in a list, so shouldn't the entire thing be renamed appropriately?e.g.
typedef struct Node { struct Node* next; int data; } Node;
Returning a string is a duplicate to many katas.
No random tests.
Why is this not a translation of the
Multiply
kata?