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.
no there no more tests
I implemented an inside edge tracing algorithm, and I made a few corner test cases that my early implementations had issues with that did not have matching problems in the passing criteria for this kata. A couple examples:
A shape that includes a space that an edge tracer needs to completely turn around in:
+---+
| |
| +-+
+-+
Or if you want a "dead end" in all directions:
+-+
| |
+-+
+---+
| |
| ++
| ++
+-+
It would be cool to see a few of these corner cases put into the acceptance criteria to make sure everyone's alrogithms are handling them all.