elaborated on an alternative syntax in day 2
This commit is contained in:
		
							parent
							
								
									64e7a253f2
								
							
						
					
					
						commit
						e6354cf097
					
				
					 1 changed files with 3 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -21,7 +21,9 @@ def parse(puzzle_input: str):
 | 
			
		|||
def part1(data):
 | 
			
		||||
    """Solve part 1"""
 | 
			
		||||
    test = lambda x: x.first<=x.password.count(x.letter)<=x.second
 | 
			
		||||
    return sum(1 for p in data if test(p))
 | 
			
		||||
    # these two lines are equivilant.
 | 
			
		||||
    # return sum(1 for p in data if test(p))
 | 
			
		||||
    return len([1 for p in data if test(p)])
 | 
			
		||||
 | 
			
		||||
def test_password(passwordSpec: PasswordSpec):
 | 
			
		||||
    if passwordSpec.password[passwordSpec.first-1]==passwordSpec.letter:
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue