Advertisement
Guest User

Untitled

a guest
Dec 6th, 2019
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. --- Day 4: Secure Container ---
  2. You arrive at the Venus fuel depot only to discover it's protected by a password. The Elves had written the password on a sticky note, but someone threw it out.
  3.  
  4. However, they do remember a few key facts about the password:
  5.  
  6. It is a six-digit number.
  7. The value is within the range given in your puzzle input.
  8. Two adjacent digits are the same (like 22 in 122345).
  9. Going from left to right, the digits never decrease; they only ever increase or stay the same (like 111123 or 135679).
  10. Other than the range rule, the following are true:
  11.  
  12. 111111 meets these criteria (double 11, never decreases).
  13. 223450 does not meet these criteria (decreasing pair of digits 50).
  14. 123789 does not meet these criteria (no double).
  15. How many different passwords within the range given in your puzzle input meet these criteria?
  16.  
  17. Your puzzle answer was 1605.
  18.  
  19. The first half of this puzzle is complete! It provides one gold star: *
  20.  
  21. --- Part Two ---
  22. An Elf just remembered one more important detail: the two adjacent matching digits are not part of a larger group of matching digits.
  23.  
  24. Given this additional criterion, but still ignoring the range rule, the following are now true:
  25.  
  26. 112233 meets these criteria because the digits never decrease and all repeated digits are exactly two digits long.
  27. 123444 no longer meets the criteria (the repeated 44 is part of a larger group of 444).
  28. 111122 meets the criteria (even though 1 is repeated more than twice, it still contains a double 22).
  29. How many different passwords within the range given in your puzzle input meet all of the criteria?
  30.  
  31. Your puzzle input is still 193651-649729.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement