题解 | #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())
全部评论

相关推荐

pdd已经一面了,听说pdd是11116听着已经压力巨大了但是听说给的多投都投了,先面着吧
码农索隆:我认为哈,工资高加班多那是正常的,加班费啥的都正常给,那是ok的,但是加班多没加班费逼事还一堆一堆的那种公司,没必要进,进去之后,都不用吃饭,没事,就吃大饼
点赞 评论 收藏
分享
08-27 12:02
已编辑
南京外国语学校 网络安全
再来一遍:实则劝各位不要all in华子,不要相信华为hr
点赞 评论 收藏
分享
熊大不大:恭喜恭喜,我也注册美团众包成功了
投递美团等公司10个岗位
点赞 评论 收藏
分享
评论
点赞
1
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务