15
ruslan.arifullin
3 9 23
1116/ 1195
Awesome Team Ruslan Arifullin
Last seen 2 months ago
Member for 5 years, 5 months, 15 days
Difficulty Normal
Best reviews / Newest reviews
'while' loop and itertools.takewhile-Splitter 1
It's a nice way to solve the task like you did -) More
Second-oldjaponec 1
Simple and clear solution. I liked it. But you can shrink size of the code by 1 line. Look at ternary conditional operators. -) More
filter and filterfalse-TheRing 1 1
Harnessing lambda functions is a good approach. More
First-cattlej2
The code is shorter for a couple of lines in comparison with mine, basically. I didn't thought to import modules. :-) More
truetime-johnathanlo
Very nice. I've never thought that it could be possible to implement the task this simple way! More
First-Stepan__Timetsky
Excellent. The code looks nice and simple! More
one_line_solving-ruslan.arifullin
Guess, it is a common solution for the task More
just_simple_not_smart_solution-ruslan.arifullin
Didn't find any way to make the code shorted and smarter. I just thought that it would be enough for the level. More
First-chynh
Nice, simple and clear solution. Great! More
Time Converter (24h to 12h)-cyung
the solution is nice, but a little bit overloaded and overengineered. Tend to simplicity! More
Tuple of magic methods-kudinov.feodor
nice and professionally looking More
First-r.ishida777
The solution is a little bit overengineered More
Simple-ruslan.arifullin
Hey the authors! Please keep in mind and fix a bug: the check require a yielded result, when assert asks the returned one. More
First-keromage 1
well organized and easy readable! More
First-bluehat_tk
In general it's clear. But it's a little "over engineered" solution. It's enough to code: for t in text: if t.isupper(): message += t More
First-mazeua
Basically it's not bad. It can be a bit less in lines of the code -) More
First-B_dur 1
Very nice and short soultion! Bravo! More
First-ruslan.arifullin
Totally forgot about max function's ability to calculate semantically.) More
Elementary- Digits Multiplication-tutek1 1
Nice and simple solution. For the educational aims such solution is fine. More
First-chaitanyamaheshwari
A nice solution basically, but here you can decrease a few lines of code and make the code more readable by such actions as : 1) create a couple of lists for keys and values and next turn the lists into a dict by zip function 2) quickly find first key for a max value from the dict (it is done by one More
1
2