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.
Can anyone give a codex on where is up down left right? I looked at all the solutions and maps, and it doesnt seem to make sense. Could I have gotten the coordinates wrong? Are the coordinates in cartesian coordinates?
Thanks! That is very helppful! :)
What does return=="" ? "": do?
This was a fun kata! But the n was a little confusing. I thought the n in the vertical scaling would be the same n in the number of strings and the length of string in the input. Perhaps you could change the n in the vertical scaling to a v?
I suggest writing 2 sets of instructions. Like For Ruby: .... and For JavaScript: ...
Its pretty unclear what is required of me in the exercise. Perhaps and input and output illustration may help.
Ok. So, I did some research. It seems draft is the distance of the water line to the bottom of the ship. With crew on board, the draft is going to increase. What you want is that the draft due to the gold (only) to be 20. So the draft passed in the test is the measured draft. You need to calculate and see if this value minus the draft contributed by the crew is more than 20 (Since you want the draft contributed by the goods to be more than 20).
Ok. So, I did some research. It seems draft is the distance of the water line to the bottom of the ship. With crew on board, the draft is going to increase. What you want is that the draft due to the gold (only) to be 20. So the draft passed in the test is the measured draft. You need to calculate and see if this value minus the draft contributed by the crew is more than 20 (Since you want the draft contributed by the goods to be more than 20).
Ok. So, I did some research. It seems draft is the distance of the water line to the bottom of the ship. With crew on board, the draft is going to increase. What you want is that the draft due to the gold (only) to be 20. So the draft passed in the test is the measured draft. You need to calculate and see if this value minus the draft contributed by the crew is more than 20 (Since you want the draft contributed by the goods to be more than 20).
Doesnt seem so random if the first 4 elements are ABCD in all the arrays
It might be shorter if you created a variable and change that variable once to use in all your conditions. :)
Am I the only one who is lost with understanding what needs to be done here?
The answers in the tests are wrong!
The instruction false/False`` plusb % a``` if both arguments are numbers confused me as I wasn't sure if I was just supposed to print the output as " " + b + "%" + " " + a . The output result seemed to have shown numbers instead of an evaluated result. All in all, a really good practice for beginner like me. Need more practices like this.