22
Selindian
7 26 43 Leader of the month
2572/ 2945
Last seen 9 hours ago
Member for 2 years, 3 months, 1 day
Difficulty Easy
I'm here to learn / improve my Python skills and help other people if possible.

Best reviews / Newest reviews
clear and readable-kdim 3
Thank you for showing me `setdefault`: As fas as I remember I have not used it before. I like this solution. But I'm unsure if two loops were needed. Maybe one loop combined with del will be faster. More
slice'n'len-CDG.Axel 1
Thank you for teaching me something about '~'. I immediately searched for more. Really interesting. Thank you. More
First-kudinov.feodor 1
Structured and readable. :-) I like your solution. Thank you. More
mixed-mnbvc123 1
Well, it seems to work. But if you would have used set() and intersection this would have been much easier. Also no loops would have been needed. Hint from description: > Here you can learn how to work with strings and **sets**. More
*'.'*-veky 1
Good solution. ... and I have counted spaces. ;-) Maybe I should search for a fitting library next time, first. More
simple one-kalauroma7997 1
I really like your version, as it's easy to understand. More
one or no and-CDG.Axel 1
Interesting way to solve this with many "<" and ">". :-) I've learned something. Thank you. More
First-virginia_wolfi 1 1
I've never used map before. After doing some reseach, I understand how this is working. So basically this "converts the string into a array of integers and get the biggest of it". Good Job. :-) More
result[isinstance(item, int)]-flpo 1
Cool way to solve this with bool as index value. I really have learned something. Thank you! But the mission seem to have changed a bit. When checking out your solution I got: Traceback (most recent call last): File "12-sum-by-type.py", line 42, in assert sum_by_types([] More
First-hbczmxy 1
Nice. It's similar to my solution, but I have not seen "//" before and have used int() for that. I have learned something. :-) Thank you. More
Put it in neutral!-veky 1
I really like your solution learned something new. Thank you! More
see the ceiling-amvasiliev80 1
Interesting way to do this in one line. I like it. More
1-liner: round -przemyslaw.daniel 1
Thank you! That teached me a bit more about "lambda". So you just have to replace the complete: def nearest_square(number): ... with just: nearest_square = lambda x: round(x**0.5)**2 which replaces the original function. Nice. :-) More
punctuation as junk-veky 1
Nice. And so I learned something new about the string module and how to use it this way. :-) I like it. Thank you for this lines. More
First-Hunteena 1
I really like it. That solution is clear and understandable. :-) Thank you. More
textwrap-fokusd 1
I like your solution. Thank you for showing me this library. :-) More
with comment-Sim0000 1
Clear and readable. I really like it. :-) Thank you. More
re.sub(ver.2)-kurosawa4434 1
Well, that's a nice and clean solution. Thank you for showing it to us. :-) More
First-Serg900vd 1 1
I tried something similar at first. However, cases like '12 34 567' (multiple space between numbers) are not taken into account. So it's easier just to compare the text against it's uppered text. return text == text.upper() More
Intersection of sets-perimeter 1
Nice way to do it in one line. I like it. More
1
2 3 4 5 6 7