leetcode 420. 强密码检验器 ( hard 模拟)
class Solution:
def strongPasswordChecker(self, password: str) -> int:
n = len(password)
if n < 3: return 6 - n flag1 = False # 是否出现了小写字母 flag2 = False # 是否出现了大写字母 flag3 = False # 是否出现了数字 list0 = [str(j) for j in range(10)] list1 = ['.', '!'] + list0 for i in password: # 判断是不是数字 if not flag
共有 0 条评论