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
Dynamic Selection-PositronicLlama 1
Super! I like selection of algorithm. More
First-jcg 1
Good solution. But be careful with variables names as **"o"** (also as **"l"**). It can be read as 0 for some fonts. For humans vision :-) More
First-Amachua 1 1
It's nice idea to solve it with weeks' diff, but hard to read. 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
Ax=B-Amachua 1
Good solutions, but too long lines do this hard-readable. More
Second-Monsikos 1
Oh, so many map, lambda filter :) More
LIB 004 The Most Numbers-Grimtyler 1 1
> round(diff,4) This is not necessary More
First-htamas 1
Thanks. This is the original solution and interesting method with rotations. It's something new. More
Comprehend-veky 1 1
It's real short! But too slow. Yes, you are lazier than i am :) More
First-andy_s
Nice. I like these docstrings. More
First-htamas
"lru_cache" -- Thanks. It's something new for me. More
First-htamas 1
As idea, you can easily rework it to generator. More
Gaussian elimination-htamas
Of course. Thanks, i tried to solve it with linear equations and made a mistake. Now i see where is my mistake. 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
7 or fewer-nickie
You can move this solution to "Clear" category. More
1 2
3
4 5 6 7 8