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

Best reviews / Newest reviews
First-Renelvon 14 1
This is original and interesting solution, but is not "Clear" for newbies. I would give you thumbsUp if it was in a different category. More
First-Renelvon 5 1
Interesting. But for the "clear" category you can add some comments (for newbies). More
Optimistic-veky 3 1
We need to do something with code highlighter -- it's hard to read oneliners with scrolling (for chrome in mac) Great solution! More
Obvious-veky 2 1
Ha. Nice! I just saw it. The interesting idea to break all links (instead rings) and look for the best of them. Brilliant! More
Adjustment-veky 2 1
count += w2 > 4 Nice, if honestly, i didn't get it at first. It's not obvious type conversation, but interesting. More
First-Bibiche 2
You "reinvented the wheel" here for many cases :) More
Third-Bibiche 2
Nice. Some remarks -- too long lines and we don't know French :) More
First-Amachua 2 2
It's like to the code golf with Java names :) Interesting solution. More
First-asa119 2 1
Awesome. Maybe it's not "clear" for newbies but I like this. More
pbs-veky 1 1
At first look i thought "This is not a puzzle. I see indents and docstring. It's clear solution and Veky didn't write it" :) But then... You broke my brain. Now i have the puzzle for weekend. More
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
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
min_enum_sum-dronnix 1 1
You can transpose matrix with a simple trick -- zip(*matrix). More
cheat \^.^/-bunnychai 1
Ok. I forgot about __builtins__ :) Thanks. More
First-CyroAvernus 1 1
for i in range(len(data)):#Filling up the binary matrix with 0's and 1's for j in range(len(data[i])): You can replace it with for row in data: for el in row: The line 8 can be reworked in the follow (this is easy expanded) if data[i][j] in 'GS': Is you More
First-Amachua 1 1
It's nice idea to solve it with weeks' diff, but hard to read. 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-RRRQ 1 1
I can not see the author of this solution, because I use Random Review. But it looks like mine -- the same mistake with "except". More
high-school geometry-Lasica 1 1
+ for the comments, - for pep8. More
1
2 3 4 5 6 7 8