22
flowerinapot
5 21 38 Leader of the month
2665/ 2945
Last seen 1 month ago
Member for 1 year, 1 month, 12 days
Difficulty Easy
Best reviews / Newest reviews
no variants, just logic-freeman_lex 2
This is so logical, simple and clear written, a pleasure to read and even more pleasure to understand, thank you for sharing. I now know that my decision has turned around and rushed in the wrong direction. Thank you More
Simple | lstrip instead of regex-Wartem 1
Great solution! The first line is not superfluous, because according to the conditions: """Preconditions: "text" and "typed" consist of only lowercase English letters and symbols "'/?!.,; 1 <= len(text), len(typed) <= 1000.""" More
stack-Phil15 1
What a delightful solution! Delight More
recursion-kurosawa4434 1
Nice solution with recursion, but it's probably more creative :) More
First OOP-Pavellver 1
For your first OOP, you have a great code More
Infinite function generator-Sim0000 1
This option is easier to read than itertools.cycle. Is there any difference making the g() function inside caps_lock(text) function or outside? More
First-Oleg_Domokeev 1
Great solution, easy to read, once I understood how it worked I was thrilled! Thanks for sharing More
3-liner: dis(ord)er-przemyslaw.daniel 1
Great solution, but the readability has decreased More
itertools.cycle-Sim0000 1
It's a revelation to me that you can use methods like this: str.upper('text'). Cool! More
Permutations-Tinus_Trotyl 1
Thanks for the clarification, it's nice to see comments on the code More
Second-marcopunteri 1
The methods are described, but they are not included in the code, so we have a dead code @property def health(self): #print('mi chiedono health',self._health) return self._health @health.setter def health(self,value): self._health = min(value,type(se More
First-cerankas 1 1
Great idea and solution, reads well. Only the combinations made it heavy More
Annotated Answers-BootzenKatzen 1
The second solution is faster :) Good comments More
First-cerankas 1
It's a clean solution, I like it More
First Word-Antoni_Wojcik 1
Good solution, but Python allows you to fit everything into one line More
one liner-Sim0000 1
Interesting solution, but hard to read :) More
I like to map it, map it-veky 1
Very interesting solution, learned a lot for myself. Thank you very much for explaining everything in the comments More
First-thehelpfulbox
I also took the hard way at first:) More
self-defended-MrPod
Loved this design: hp = lambda unit_1, unit_2: (lambda res: [0, res][res > 0])(unit_1.attack * unit_1.is_alive - unit_2.defense) More
1001011-sinclair2k
Solution does not handle capital letters "aeiou" for robot language More
1
2 3 4