10
walmas
8 20
471/ 545
Awesome Team Sam Law
Last seen 1 month ago
Member for 1 year, 1 month, 2 days
Difficulty Easy
Best reviews / Newest reviews
First-mennadiego 1
the \ as line continuation is really interesting, makes it really readable -- going to start doing that! More
One-liner using isupper(), islower(), istitle()-H0r4c3 1
ooh didn't know about these, nice.. More
First-jiangyang
the really clear, the [::-1] is a nice touch More
First-ziza99xd
Really liked the way you didn't cram it all onto one line, makes it easy to see what your doing :-) More
text.find or None-StefanPochmann 1
Wonder what the relative advantage is of .find() vs .index() or if its the same More
First-chorna
i was trying to figure out how to do something similar concatonating the strings but couldn't figure it out, nice! More
First-walmas
It's all on one line, using the .isdigit() and .isalpha() string methods More
Simple list comprehension-Fermax
I got the same thing, I love list comprehension and it was cool to realize that range takes step size as a third, optional, parameter. More
First-colinmcnicholl
I was stuck on trying to modify the first list but this approach makes much more sense... More
First-gregcooper5
The use of lstrip is really smart, didn't know you could specify a value other than white space, as is storing each of the values in a list which you use max on. More
sorted == words-flpo
Okay, the key for sorted is incredible. Very useful. More