Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second Acceptable Password I solution in Clear category for Acceptable Password I by Wakko_Warner
def is_acceptable_password(password: str) -> bool:
# your code here
return len(password) > 6
Dec. 1, 2020
Comments: