2020 Advent of Code - Day2

问题

— Day 2: Password Philosophy —
Your flight departs in a few days from the coastal airport; the easiest way down to the coast from here is via toboggan.
The shopkeeper at the North Pole Toboggan Rental Shop is having a bad day. “Something’s wrong with our computers; we can’t log in!” You ask if you can take a look.
Their password database seems to be a little corrupted: some of the passwords wouldn’t have been allowed by the Official Toboggan Corporate Policy that was in effect when they were chosen.
To try to debug the problem, they have created a list (your puzzle input) of passwords (according to the corrupted database) and the corporate policy when that password was set.
For example, suppose you have the following list:
1-3 a: abcde
1-3 b: cdefg
2-9 c: ccccccccc
Each line gives the password policy and then the password. The password policy indicates the lowest and highest number of times a given letter must appear for the password to be valid. For example, 1-3 a means that the password must contain a at least 1 time and at most 3 times.
In the above example, 2 passwords are valid. The middle password, cdefg, is not; it contains no instances of b, but needs at least 1. The first and third passwords are valid: they contain one a or nine c, both within the limits of their respective policies.
How many passwords are valid according to their policies?

问题2

答案

def is_valid_password(password, policy):
    separate1 = policy.find('-')
    separate2 = policy.find(' ')
    least = int(policy[:separate1])
    most = int(policy[separate1+1:separate2])
    letter = policy[-1]
    if least <= password.count(letter) <= most:
        return True
    return False
    
def is_valid_password(password, policy):
    separate1 = policy.find('-')
    separate2 = policy.find(' ')
    pos1 = int(policy[:separate1])
    pos2 = int(policy[separate1+1:separate2])
    letter = policy[-1]
    
    if (password[pos1-1] == letter) and (password[pos2-1] == letter):
        return False
    elif (password[pos1-1] == letter) or (password[pos2-1] == letter):
        return True
    
    return False
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值