17
petr.synek.phd
3 13 25
1605/ 1695
Petr Synek
Last seen 2 years ago
Member for 4 years, 3 months, 1 day
Difficulty Normal
Best reviews / Newest reviews
First-Sairaj
You could shorten the code by returning results directly eg.: return len(password)>6 More
First-gainian
You could shorten the code and make it more readable by passing the result directly eg.: return len(password)>6 More
First-NikitaDance
You can shorten the code by returning directly the result eg.: return len(password) > 6 More