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

Best reviews / Newest reviews
First-Sim0000 1 1
Great. But variables names are not descriptive. More
First-htamas 1
Thanks. This is the original solution and interesting method with rotations. It's something new. More
First-bukebuer 1 1
You can use enumerate for 15-16, 27-28 and 35-36 lines. More
First-Bibiche 1
I don't understand about first definition of "prolonge". What for? More
MindSwitcher-bunnychai 1
My first thought was - "Hm, it's my solution. Maybe I clicked a wrong link." :) More
Dynamic Selection-PositronicLlama 1
Super! I like selection of algorithm. More
Cheating :)-weerd 1 1
Ha ha :) Super! It's really funny. You just made my day. 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
Slice-PositronicLlama 1 1
"all" is a builtin name, so this is a bad choice. More
First-jcg 1
Thank you for the interesting comments. More
Unary-veky 1 1
The nice trick! lambda x:"+"*x+"-"*-x I like it -- something new and not obvious. More
Second-Monsikos 1
Oh, so many map, lambda filter :) More
First-coells 1
This is a surprise solution. Great! More
First-AlexeyIvchenko 1
In this task you have not to search the shortest way. So you don't need min(self.routes). But if you want the shortest way, then i recommend you to look at another algorithms (Dijkstra, BFS, A* search) 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-ForrestGump 1
line 4-7 can be simpler if alpha not in text: return False More
First-eugen.stegnij 1
I didn't get why do you use "*a" here. A input tuple become a == ((data),) and then you unwrap it again. list conversion are redundant -- "sorted" can work with tuples too. And "lambda x: abs(x)" is the same as "abs". So you can use "key=abs". P.S. PEP8 is a good choice for "Clear" ca More
Ax=B-Amachua 1
Good solutions, but too long lines do this hard-readable. 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-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
1
2
3 4 5 6 7 8