19
ermichin158
6 17 39
2133/ 2195
Michael
Last seen 3 years ago
Member for 8 years, 7 months, 9 days
Difficulty Normal
Best reviews / Newest reviews
1-liner join-nickie 1
Nice one. I dont think that it can be shorter =) Or i dont know something... More
More Than Words-John.Hammell 1 1
Best that i seen ;). Great work! Check my if you want. But my work is not so cool =(. Good luck! =D More
54 chars-Sim0000 1
Great solution! Don't forget to use it in production code... And write: `... # Magic #beaf` More
First-u2ezi
Nice solution. Clear code. But you can use integer division(Or division without rest) by doing this: n = n // 10 And then line n -= n % 10 Will gone(By your strength mind and hands) More
First-iwo.malyszka
Simpiest solution. I mad whole program for this when i didn't knew about radix in '**int**' function. Good job man! More
easy way-chukkloon
Nice solution. If you want you can make 'lambda' expression out of it. It will be more stylishly and elegant in your case =) More
First-KarolinaK
Nice and clear solution. Good job =) More
First-drussell
Standart solution. But standart doesn't mean 'bad'. It is very nice and clean way to do this =) More
booleans-Slepice1
I have almost the same solution. But Your is more compact and more clear =) More
Extended Iterable Unpacking-suic 1
Nice solution. I see such cool decomposion for first time =) More
for else-veky 1
Nice solution. Let's contvert all booleans to int(or ints to booleans... idk :))! More
Bits and pieces-veky 1
Nice solution. It's score shows it's goodness =) So i will up vote it More
Expert trying to teach Python style-veky 1
Heh, nice solution. I didn't thinked about importing something to generate string of 'digits' More
Regular right-sided currency-ermichin158 1
Veky wait. My predictions: > Dont use lambas like on line _4_. You can use buil-in functions instead > You can do regex replace on line _8_ > You guessed almost right. OR No, you didn't guessed anything of that ~:) my Python is developing. Thank to you, veky =) More
Second-shadowpanther
to do it shorter try not to use spaces ;) But i dont recommend using it in yor code... bad style More
First-shisashi
Nice idea to use sum(array[-1:]) to prevent empty array =) More
list as stack-toptab
It isn't fast solution. Dont use split in cycles. Because split is slow command. More
First-vshavernev 1
Nice and simple solution. Good job More