18
Weijun23
1 5 12
1720/ 1945
Weijun Zhou
Last seen 10 hours ago
Member for 1 month, 25 days
Difficulty Easy
Best reviews / Newest reviews
Remove all after-nikitoz-marik
This implementation efficiently utilizes list slicing and the index method to achieve the desired outcome without unnecessary iterations. More
First-kazuki.h
The logic is straightforward and easy to understand. More
First-o.kovalev
The function iterates through the entire list until it finds the border element. If the list is long, this could be inefficient, especially if the border element is near the end of the list. More
First-ziza99xd
The use of a while loop and manual indexing may make the code slightly less readable compared to a more straightforward approach (for loop for example). More
re-adamspj 1
You can end the function when 'good_password' == False, so your function doesn't have to run through all the if statememt. More