32
Nocturne13
11 34 49
5838/ 6195
Artur Alexandrov
Last seen 25 days ago
Member for 1 year, 6 months, 19 days
Difficulty Easy
Best reviews / Newest reviews
First-sesenion
Nice, clear and readable solution. Well done. More
First-ciel
Yes, it's very useful to look into the docs one more time and to learn about not very common, but sometimes very useful alternative parameters, even of the simple functions like int(). Well done. More
First-cimarronm
Oh, it's such an elegant solution, using orderedDict from collections library. Well done. More
3-liner: easiest-przemyslaw.daniel
Nice, clear and readable solution, using combination of list comprehension and groupby method from itertools library. Well done. More
Generator and range-9Teen90Three
Good, nice and sppedy solution. Well done. More
First-9Teen90Three
Nice solution, using functools library. More
First-Oleg_Domokeev
It's a very appropriate use of try\except block for solving this task, really helps you to avoid unnecessary if\else blocks at all. Well done. More
Using regex-Kolia951
Rather clever solution with regExp. More
First-Jakub_Niedziolka
Maybe it is too complicated to use ord() function for checking digits in string, instead there is a str.isdigit() method, but nevertheless rather unsusal solution. More
reduce-Cjkjvfnby
Oh, it's a very interesting combination of two libraries. Of course, reduce is very common when you need to transform lots of values to one single value, but mul function instead of lambda is rather creative. More
all_the_same = compose(all, the, same)-flpo
Oh, lamda inside another lambda)) Not an easy solution to grasp at first, but it looks very compact. More
"Missing Number"-Mateusz_Wryszcz
So, quite readable solution. I've solved this task using the same logic. More
sum of the members-pokryshkin
Very good solution, using sum of arithmetic progression, I suppose. More
First attempt-117374
You can just write with one single line: return len(password) > 6 without if/else clause, but it's OK. More
First-arta
Clear and readable solution. Well done. More
4 Annotated Answers-BootzenKatzen
As usual, great solution with full clarification. More
First-v0id
It is a really nice implementation of the Counter method from the collections library. Well done. More
divmod-flpo
Oh, it's quite elegant and smart to use divmod function for solving this task. Brilliantly done. More
quest grinding-Bifftastic
Nice two-liner and use of casefold function. More
First-Adam.Michalak
It's a very creative solution, using combination of list comprehension and maybe the most common method from collections library. Well done! More
1 2 3
4
5 6