Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
double negation of slice solution in Creative category for Acceptable Password I by yoichi
def is_acceptable_password(password: str) -> bool:
return not not password[6:]
March 20, 2020
Comments: