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.
coding_hedgehog has posted a suggestion about this.
Okay, I just swapped my loop logic and fixed my issue. Thanks
If not explicitly, I wouldn't assume it doesn't matter when comparing two lists.
Python 3.8
So where in the instructions does it mention that the order of the returned list matters?
I have the correct output on all returned list for all test but im failling one test due to the order of the returned list.
['aabb', 'abab', 'baab', 'baba', 'bbaa'] should equal ['aabb', 'bbaa', 'abab', 'baba', 'baab']
This comment is hidden because it contains spoiler information about the solution
what errors are you getting.
Also I know its implied by looking at the syntac of your code but always include the language in your write up.
Thank you for pointing me to the git page. I see this issue has been discussed now for man years. Hss there been any protypes or newer versions impimented in this time frame?
Yes.
https://github.com/codewars/codewars.com/issues/2237#issuecomment-759748091
https://github.com/codewars/codewars.com/issues/2052#issuecomment-607520277
https://github.com/codewars/codewars.com/issues/1391
...and many more.
Does any of the Mods(or whoever makes decisions) read these? There is alot of feed back for the upvote system and nothing has been changed.
I agree with this!
I agree with this. Too many newbs (myself included) give out thier first best practices upvotes to those solutions that deserve instead a clever (at best). Was there ever a tutorial explaining the difference? Some solutions do have a clever looking best practice though, so it's a tough thing to explain. Fortunatly, people seem to have figured out the correct response once they are solving 5 Kyus.
I agree with alot of the other indiviuals in this discussion on the point that there is way to many upvotes for hard to read, hard to maintain and hard to understand one line code solutions. Just because you can do it in one line using lambda or list comperhension does not always make it the best practice, cleaver maybe but definitely not always the best practice. This is teaching new individuals like myself the wrong way to code. If you submit some of these solutions to a company in real life you are liable to be laughed out of the room. My suggestion is to remove the upvote capabilty from individuals until they reach a level of 5 or 4 and hopfully by then the will understand the difference in cleaver and best practice.
Maybe have to submission for each kata, one for best practice and one for cleaver.
This comment is hidden because it contains spoiler information about the solution
It's a problem with your code, fix it.
So is the space at the end of my string an issue or am I missing something here?
'20 8 5 19 21 14 19 5 20 19 5 20 19 1 20 20 23 5 12 22 5 15 3 12 15 3 11 ' should equal '20 8 5 19 21 14 19 5 20 19 5 20 19 1 20 20 23 5 12 22 5 15 3 12 15 3 11'
I have aspace after the last 11 in the string and im getting failed for it. Do i Need to correct this or is this a flaw in the testing?
Loading more items...