17
sesenion
4 9 30
1476/ 1695
Awesome Team Michael Schneider
Last seen 1 day ago
Member for 5 years, 10 months, 2 days
Difficulty Normal
Chemist and part time software tool developer. As a teenager, did Basic and Assembler on C64. These days, I use Python (Django, Matplotlib, ...) for most things but have dabbled a little in Javascript and C# when needed.

Best reviews / Newest reviews
numpy matrix-rodka81 1
Had to look up np.where, since I am not terribly familiar with numpy. Always good to learn something new. More
insort_left-flpo 1
Nice, I read about insort some time ago, but didn't think of it. More
Using try\except-Kolia951 1 1
I wouldn't recommend a blanket expect without specifying an error class. In this case it would be expect ValueError. Although this is the only error I can think of here, blanket except might hide errors you never thought of when writing more complex code. Also, I would probably use a different var More
Ceph's Refactored-suic 1
Nice. The Regexes don't get too complicated this way. More
Ground for the House-JimmyCarlos 1 1
Does this still work if there is an empty row/column in the middle of the house? I seems to me you would filter it out. More
o(n)-roy47
Pretty straightforward approach. More
First-Smerda
Quite creative list comprehension use. I wouldn't use it that way, but learnt something new. More
reduce-Cjkjvfnby
I first thought there was a product function similar to the sum function in the builtins when I read this. Just found out there isn't. More
dropwhile from itertools-dbirmajer
Interesting. Didn't know dropwhile. Appears to be a common thing in the functional world. More
First-book1978
It does the job, although I find the comprehension in the comment below a lot more readable than the map/filter expression. I wouldn't use i in the expression, since it is commonly used for integer counter values. More
First-vtflnk
Pretty solid generator expression. Nothing to add. More
First-YellowTree
It works, but depends on the hours having exactly two digits. The (hours + minutes) thing looks quite creative. More
First-hkgok1
Not sure why the list comprehension is required here. Wouldn't it be easier and more performant to just join the re.findall result? More
Pawn Brotherhood-ouhuazheng
Pretty much the same approach I did, yet less verbose. More
check is there pawns guard-Tairraos
Nice dict construction. I did it with chr and ord, but this is kind of more original. More
thanks for review my codes-fangxiang0727 1
Does this still work when two names in a team have the same first letter? More
sorted list comprehensions -pseudorandomcoder
Hehe, this looks like mine, I just had parentheses around the if clause ;) More