Skip to content

Commit 9ef6886

Browse files
committed
Day 11 - Add missing p/w requirement (answers/outputs unchanged)
1 parent 576b620 commit 9ef6886

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

day-11/day-11-part-1.rb

+7-1
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,14 @@ def two_pairs?(password)
1313
password.scan(/(.)\1/).count >= 2
1414
end
1515

16+
def excludes_confusing_characters(password)
17+
password.scan(/[iol]/).empty?
18+
end
19+
1620
def valid_password?(password)
17-
increasing_straight?(password) && two_pairs?(password)
21+
increasing_straight?(password) &&
22+
two_pairs?(password) &&
23+
excludes_confusing_characters(password)
1824
end
1925

2026
next_password = 1

day-11/day-11-part-2.rb

+7-1
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,14 @@ def two_pairs?(password)
1313
password.scan(/(.)\1/).count >= 2
1414
end
1515

16+
def excludes_confusing_characters(password)
17+
password.scan(/[iol]/).empty?
18+
end
19+
1620
def valid_password?(password)
17-
increasing_straight?(password) && two_pairs?(password)
21+
increasing_straight?(password) &&
22+
two_pairs?(password) &&
23+
excludes_confusing_characters(password)
1824
end
1925

2026
next_password = 2

0 commit comments

Comments
 (0)