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.
x)
=> "being the guy arriving with bad news", sort of
hey that is totally reasonable and i understand that. cheers and thanks for your time. (ps. it does not translate lol)
well, here you'd run into the "PU" trouble (keeping the story short / PU = power users = generally those who solve beta): "we" and more generally codewars are sort of fed up with easy tasks already. Yours, even in "good shape" would still be too close of any "filter/map/reduce" problem, as said by FArekkusu, and there would be actually pretty low chances your kata leaves the beta phase "alive" (there is a second retirement barrier around 12 or 14 votes).
I know it sounds pretty discouraging, yeah... :/ The idea is that we already have so much of those easy katas that adding one more (unless especially interesting for one reason or another) is strongly disregarded nowadays...
Sorry to be the crow of the story... ;o (not sure this idiom translates to english :o x) )
cheers
And what is your view if I'd refactored the messy inputs as per your design, and create a kata that just focus on the problem? Would it still be an interesting 8 kyu question? Just trying to know what standards veterans are looking for in a 8 kyu question
because:
aside of that:
for vs in d.values() for k,v in vs.items()
instead of justfor _,vs in d for k,v in vs
if d is the list of tupleserrr... That's what comes to mind right now... (some of those are coming from lazyness (amount of chars, yes... x) )
And hey, what is your rationale behind 'a list of dicts didn't make sense, should be a list of tuples'? What is the reason that it should be a list of tuples?
well, experience is a matter of... experience. So yeah, first things first: start some project on your own (even if simple), solve more kata, but in any case, ask yourself everytime:
takes some time...
cheers
edit: you should unpublish your kata, btw (there are little chances it survives the beta process anyway, so...)
edit²: sorry for the typos in the messages... :/
great input. Thanks for the lengthy comment, I appreciate it. As a newbie I would love if you could recommend ways for me to improve my design skills, as I don't have much experience building projects but just solving problems on here and Leetcode. Recently am learning on python dictionary so I thought I could build a problem to share on some challenges I had with it like iterating it and accessing nonexistent keys, but obviously you mentioned my blindspot which is that it is setting bad examples to new coders.
I guess I'll stop creating Katas for now and work on my skills just to do you and the new katas mods a favor! Thanks again.
see my message above, about "interesting/beginners" ;o
Do you mean the one in the description?
The fake answer is that I hope it would interest beginners in learning different ways of handling these data structures and constraints. The real answer is I'm just trying to add complexity to a rather simple problem :p
well, you need to work out your design skills, considering your inputs.
None/[]
, why not (but "meh" already)[None]
seems far from a good idea(string,list)
providing a problem with such messy inputs is just an artificial way to increase the amount of work, and not an interesting one. Moreover, this is whowing a bad example to new coders. Any sain programmer would never choose this kind of setup/input to work with. And if by any bad louck he encounter this as an output of a third party tool, the first thing he'll do is cleaning up the whole mess before sending the proper data structure to his function. Hence you're mixing too tasks just to increase the level of your kata, and I guess you read in the docs I gave you that... this is a bad idea... ;)
The
current_wallet
inclusion adds nothing to the task.Half the task is dealing with the terrible input format... Why?
that's this one, except you're not using it, right now (decorators)
Loading more items...