15
bartholomewbrokka
2 16 28
1152/ 1195
el Barto
Last seen 2 years ago
Member for 3 years, 4 months, 9 days
Difficulty Normal
Best reviews / Newest reviews
First-artem.nevolnyk
This program has unreachable code after return statement More
First1-spxinjie6
Thanks. I've learned the isinstance() function More
First-bjp4642
This function has redundant code More
Len Set-Striga 1
I don't get it. Why does this expression 6 < len(password) != len([x for x in password if x.isdigit()]) > 0 evaluate to False for passwords 'sh5' and 'abc1'? 6 < len('sh5') # False len([x for x in 'sh5' if x.isdigit()]) > 0 # True False != True # True More
Stackless-blabaster
This solution looks so simple and impressive More
sorted == words-flpo 1
Did you use sorted() to sort this set of words intentionally? I think you could assign a list to text_words at once. text_words = [w for w in text.split() if w in words] More