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.
Changed the random cases. This is the problem with random rows and columns generation. It should be fixed now. Please verify it.
Please review the random test cases. of my translation.
Python Translation created.
How can you make a kata popular in short time?
Add a meme to it. This should be in codewars wiki : )
This is solved.
Fixed the issue.
Yes sorry for that going to change
This kata is too creative to have only single language. Python translation : )
Row 0 -> "a", row 1 -> "b", row 2 -> "c" ... row 26 -> "z"
Here row 0 is "a" means "z" should be row 25 as you started with 0.
Also you should format the example above
MatrixPalindromes.createMatrix(3,3)
Should return a string representation of the matrix : "[[aaa, aba, aca], [bbb, bcb, bdb], [ccc, cdc, cec]]".
To somewhat like
because without formatting it looks..... kind of Boring?
Java Translation created : )
Actually this is how overs on original game represented. So he used it that way.
Hmm just solved this one. And I guess this kata is more about separating data like name from other parameters rather than finding the economy itself. So I guess it would be better if you show the figures input structure in the description. It would be little helpful to focus on what you actually have to do.
You don't need to elimenate the '\n' it should be there but you need to split the string so that you can work on multiple lines of it. It just want you to remove the white spaces at the end of line like
bananas \noranges
is not correct butbananas\noranges
is correct.Well according to me you can. Just because python gives us much freedom. So you can complete the problem in a number of ways. This is one of them... Also it is much more efficient to use this then using for-loops.