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.
That's much less scary! :)
minor typo: adiacjent
Now that I've looked at the values in your test example:
arr = [ [2,2], [3,2], [3,5], [6,2], [0,3], [3,3], [0,0], [6,1], [4,0], [2,5] ]
I can see that the coordinate system is the one at the top right of my image.
I'd like to see this explicitly stated near the start of the description.
Apologies if it's meant to be obvious from the description, but how do you define/number "columns" on the hexagonal grid?
Is it any of these? Or something else? https://i.imgur.com/SP6lWBG.png
I'm reluctant to start trying to solve this if I'm unsure of the coordinate system i'm using.
If you're going to call your requirements "Bullets", make the first 4 a list, so they actually have bullet points at the start.
I'd also prefer to have them numbered, for ease of reference when you later mention "If bullet 3 is true:"
I found that most of my time was spent scrolling the description up/down, switching between the "Add a point" rules, and the number/html mapping.
This would have been less tedious if the rules included the answer numbers:
etc.
After a LOT of guesswork, I've now completed "Hamiltonian cycle : check function" and "Hamiltonian cycle : create one !".
I'm not a mathematician; until today, I'd not heard of Hamiltonian paths/cycles.
Here are some of the things that made this MUCH more difficult that it should be:
I've now completed both "Hamiltonian cycle : check function" and "Hamiltonian cycle : create one !"
I see no benefit of "Hamiltonian cycle : check function" being a separate kata.
This comment is hidden because it contains spoiler information about the solution
minor typos:
Turing is a proper noun, ao should have a capital T
transition
character
I should have been clearer. This was two typos.
You fixed the space, but it still says "frrozen"
minor typos:
should -> be => to be consistent?
frozen, missing space after )
it's should be its
I think the wording of this could be improved.
I initially took it to mean
"new line characters will never be replaced by X"
instead of
"if a new line character has been replaced by X, you should return False"
(python). Instructions: If a string contains all repeating characters, it should return an empty string ("") or None
Tests expect empty string, and will fail if None is returned
Suggestion: remove "or None" from instructions