45
bryukh
16 32 48
15857/ 17173
Valentin Bryukhanov http://bryukh.com/
Last seen 2 years ago
Member for 11 years, 8 months, 2 days
Difficulty Normal
Developer, engineer and taskMaker.

Best reviews / Newest reviews
First-Majavar 1
Good. Only one remark - 'l' is the bad name for variable, because it very similar to "1" for some fonts. Without syntax highlighting it can complicate the code reading. More
Ax=B-Amachua 1
Good solutions, but too long lines do this hard-readable. More
Slice-PositronicLlama 1 1
"all" is a builtin name, so this is a bad choice. More
Unary-veky 1 1
The nice trick! lambda x:"+"*x+"-"*-x I like it -- something new and not obvious. More
First-Bibiche 1 1
It's really nice solution. It's short, it's readable, it's simple. Little PEP8 and docstring, and it will be perfect. http://pep8online.com/share/519f30976cee16191749a28f More
First-coells 1
This is a surprise solution. Great! More
Ugly bruteforce-Amachua 1 1
Yeah, the third loop is redundant even for bruteforce :) More
First-Don.He 1 1
One little advice -- "sum" is a builtin function in python and using it as a variable name is not a good idea. More
Second-ajmssc 1
You forgot about spaces around operators (pep8). if cell[0]==10 and cell[1]==10: You can make it simpler if cell == (10, 10): line 4 -- "== 1" is not necessary if lab[cell[0]][cell[1]]: line 13-17 min(paths, key=len) But for the shortest path you can use BFS More
cheat \^.^/-bunnychai 1
Ok. I forgot about __builtins__ :) Thanks. More
First-suwanditan
Interesting whitespaces style :) Nice generator. More
Second-AlexeyIvchenko
key = lambda x: x[1] * 1000 - ord(x[0]) Hm, it looks weird imho. What is it? More
First-htamas
I think you can place it in the "Speedy" category. More
First-Amachua 1
It's almost "clear" solution. Short and simple, but please don't use long lines -- it's hard for reading. :-) The new PEP8 allows 100 characters per line. More
First-htamas 1
Tricky :) It can be placed in the "Speedy" category. More
First-bukebuer 1
**bin()** and **int(n, 2)** can help here :) More
First-pawlyk
It does not look as "Clear" solution. The long lines, the bad names. I agree with [Cjkjvfnby's comment.](http://www.checkio.org/mission/humpty-dumpty/publications/pawlyk/python-27/first/#comment-outer-9032) More
Refactored-nickie
This is not "Clear" (as you said), but it's interesting solution. More
BFS-bryukh
Sorry for the wrong name. It's more correct to name it UCS (Uniform-cost search). More
First-old_user
-3 for the hard readable indents. More
1 2
3
4 5 6 7 8