题解 | #HJ20 密码验证合格程序#

密码验证合格程序

http://www.nowcoder.com/practice/184edec193864f0985ad2684fbc86841

Python版本

import sys

def check(passwd):
    status = True
    if len(passwd) >= 8:
        flags = [False] * 4
        for c in passwd:
            if '0' <= c <= '9':
                flags[0] = True
            elif 'a' <= c <= 'z':
                flags[1] = True
            elif 'A' <= c <= 'Z':
                flags[2] = True
            elif c != ' ' and c != '\n':
                flags[3] = True
            else:
                status = False
        status = status and flags.count(True) >= 3
        for i in range(len(passwd)-2):
            sub = passwd[i:i+3]
            if sub in passwd[i+3:]:
                status = status and False
    else:
        status = False

    if status:
        print("OK")
    else:
        print("NG")
        

for line in sys.stdin:
    check(line.strip())
全部评论

相关推荐

11-27 17:08
已编辑
牛客_产品运营部_私域运营
腾讯 普通offer 24k~26k * 15,年包在36w~39w左右。
点赞 评论 收藏
分享
安静的垂耳兔在泡澡:ks已经第八次投递了,它起码挂了还让你再投,不错了
点赞 评论 收藏
分享
11-14 17:28
已编辑
门头沟学院 Java
点赞 评论 收藏
分享
评论
点赞
1
分享
牛客网
牛客企业服务