15
lancelote
2 11 22
998/ 1195
Pavel Karateev http://pavelkarateev.com/
Last seen 3 years ago
Member for 11 years, 19 days
Difficulty Normal
I'm a Django developer in a small local company specialized in a hospital software solutions. Fond of Python and testing =)

Best reviews / Newest reviews
Clear one-liner-Pouf 1 1
Nice = ) Not sure if optimal though. More
First-tablestart
`for` loop can iterate directly through a string: for char in string: if char.isuppe(): pass More
First-Jemmity 1
Nice `any` use! But you should probably check length first so it will shut down evaluation before loops if password is not long enough. More
First-archugs
`total += 1`x8 makes me cry inside = ) Perhaps you should use a `for` loop or something. More
First-grigoriytretyakov 1
Not clear "at first sight" but definitely elegant. More
First-lancelote
Oh, positions can be dropped in fact: '{:02b} {:04b} : {:03b} {:04b} : {:03b} {:04b}' More
First-HHKa
Nice solution, I would suggest to simplify it further to oneliner with ternary operator. More
First-buddyfeagles
I believe you can greatly speed up the solution with enumerate function instead of index method usage. More