13
esatana
1 12 29
784/ 845
Enrique Santana Anaya
Last seen 10 months ago
Member for 10 years, 25 days
Difficulty Normal
Best reviews / Newest reviews
First-Flareon
Investiga la función str.strip() More
First-MASIAIN
What happens if the word is repeated more than 2 times? More
First-caitlan
It's ok but sorted already returns a list so no need to cast numbers_array into a list. More
First-Luciana
Investiga el módulo string, aunque las cadenas de texto ya tienen una función str.upper() y str.lower() que te da True o False si es mayúscula o minúscula o str.isdigit() si es número. More
First-zhanggg520 1
maybe lost the oportunity of using unpacking in time.split on the first line... hour, minute = time.split(':') It looks good though More
First-brownie57
you could just h, m = time.split(':') More
First-sarahmorin
Nice, dig into reduce function to find an interesting way of doing this More
First-S1s 1
text.split(' ') already returns a list, so b = list(a) is kind of redundant More