15
abdelhak
1 14 26
1025/ 1195
Last seen 2 months ago
Member for 4 years, 1 month, 22 days
Difficulty Normal
I write code.

Best reviews / Newest reviews
simple to understand -abdelhak 1
that's much better: def checkio(a): if len(set(a)) >= 3: if not 'password' in a.lower(): if 6 < len(a) <= 9: return any(map(str.isdigit, a)) and any(map(str.isalpha, a)) else: return len(a) > 9 else: return More
Use the force of set, Luke, right!-obone 1
small and clear, that's great code. More
simple list comprehension-abdelhak
we loop over words and append it as a key to our dictionary. we lowercase the text and transform it to a list by split() than we count how many times words showed up in the text by count() and append it as value to our dictionary. More
First-B_dur 1
good way of using list comprehension . More