6 kyu
Sales report
77ecolban
Loading description...
Fundamentals
View
This comment has been reported as {{ abuseKindText }}.
Show
This comment has been hidden. You can view it now .
This comment can not be viewed.
- |
- Reply
- Edit
- View Solution
- Expand 1 Reply Expand {{ comments?.length }} replies
- Collapse
- Spoiler
- Remove
- Remove comment & replies
- Report
{{ fetchSolutionsError }}
-
-
Your rendered github-flavored markdown will appear here.
-
Label this discussion...
-
No Label
Keep the comment unlabeled if none of the below applies.
-
Issue
Use the issue label when reporting problems with the kata.
Be sure to explain the problem clearly and include the steps to reproduce. -
Suggestion
Use the suggestion label if you have feedback on how this kata can be improved.
-
Question
Use the question label if you have questions and/or need help solving the kata.
Don't forget to mention the language you're using, and mark as having spoiler if you include your solution.
-
No Label
- Cancel
Commenting is not allowed on this discussion
You cannot view this solution
There is no solution to show
Please sign in or sign up to leave a comment.
Enjoyable programming kata indeed.
python new test framework is required. updated in this fork
This comment has been hidden.
.
The random tests call
runTest(expected, actual)
instead ofrunTest(actual, expected)
.Corrected.
This comment has been hidden.
Fixed.
This one was quite a pin in the ass to debug... because of the formating of the assertions. So I modified the tests to have a proper display of the actual and expected in the console.
Other than that you have some queer things in this one that might make it a pin the ass for other reasons:
Thanks for your edits on the test code. Looks good.
The reason for iterable and not being able to index is: Imagine you have a very, very large number of records. You might be reading them from a file that has been presorted. You cannot load all the records in memory and manipulate them as if they were a list. Yet, you should still be able to generate the report. So, even if your solution passes, it does not fulfil the intent of the kata. As to the order: Again, I was trying to mimic a real world scenario were the records have a particular format that is not necessarily taylored to a specific report. Finally, was hoping that more solutions would be using
groupby
, which does all the grunt work and serves the groups and the records in each group on a silver platter.Interesting point. I'll try to remember that. ;)
So.... ;)
Yes. Look-ahead 1 and special case when you reach the end of input. This is what I mean by saying that
groupby
does the work for you.@ecolban
,I enjoyed this kata and made a couple of minor improvements to your kata as well.
'''...'''[1:]
by using a backslash to get rid of that first newline character in your multi-line stringsxrange
's torange
so now the kata works for both Python 2 & Python 3Hopefully you don't mind the changes!
Those are all good changes. Thanks.