17
gileadslostson
4 22 34
1515/ 1695
Marc-Anthony Taylor http://marcanthonytaylor.com/
Last seen 2 years ago
Member for 9 years, 11 months, 11 days
Difficulty Normal
Python dev working in infosec =)

Best reviews / Newest reviews
itertools.groupby-fed.kz 2
I wouldn't have thought of using groupby. Nice! More
One-liner-nmay 1 1
Love that you included the one liner! It is something I have never really gotten the hang of. More
One-liner-suic 1
Lambdas and descriptors? Oh my! ;) Very nice =) More
Regular-stromberg 1 1
While it is clear, your solution isn't very "pythonic". Which isn't bad necessarily! If you look at some idioms you might find ways to make your code more readable. More
one string-inz2008 1
Not the most easily readable but I like it =) More
First-MBM_1607 1 1
You could have started your `range` at 1 and so left out the `continue` More
semi-clear solution-Goodester 1
Only thing I'd add just now is watch out for the name shadowing. More
MOBA-itheklon 1
Other than a couple of place you could shorten your code, and maybe a little formatting, it looks good! More
First-Sillte 1
Like the use of the nested function! More
First-e.tmailbank 1
The code looks fine for the most part, a little more attention to formatting and `PEP8`. But why is this under 3rd party? More
First-igor.v.dudenko 1
You might want to look at how inheritance works. For example: `Warrior.__init__(self)` would be better as `super().__init__()` Also, maybe consider adding args or keyword args to the constructor. More
First-FromVault13 1
While this code does work, you might want to look at `pep8` as it isn't terribly clear. More
Like pulling teeth-gileadslostson
Better solution: https://py.checkio.org/mission/completely-empty/publications/gileadslostson/python-3/pulling-teeth-part-3/ More
First-acarpioanon
Short and sweet =) If you want to follow PEP8 though, watch for those spaces before and after "=". More
First-sarahmorin
You might want to look at your spacing (e.g. `start+=1` should be `start += 1`) More
First-mihail.ponomaryov 1
Simple and clear. For the `__repr__` you might want to use `f-strings` which are awesome =) More
First-miyagusu
Have a look at `PEP8` maybe to check your formatting. For example your `__init__` should be at the top. This shows a logical progression to the code. More
First-RezoApio
Why `import` in the inner scope? More
Pulling Teeth Part 2-gileadslostson
Better solution: https://py.checkio.org/mission/completely-empty/publications/gileadslostson/python-3/pulling-teeth-part-3/ More
"Pawn Brotherhood"-constlapkin
Your code is quite verbose. You could have a look at how to shorten it and make it more `pythonic` More
1
2 3