Chk_Rpt

PHOTO EMBED

Thu Oct 13 2022 08:32:04 GMT+0000 (Coordinated Universal Time)

Saved by @Bird #python

pos = 0

    for eachChar in password:
        if pos < pw_len - 2:
            if eachChar == password[pos + 1] and eachChar == password[pos + 2]:
                no_rpt = False
            else:
                pos += 1

    if upp and low and num and spc and cnt and no_rpt:
        return True
    else:
        return False
content_copyCOPY