File tree 2 files changed +14
-2
lines changed
2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -13,8 +13,14 @@ def two_pairs?(password)
13
13
password . scan ( /(.)\1 / ) . count >= 2
14
14
end
15
15
16
+ def excludes_confusing_characters ( password )
17
+ password . scan ( /[iol]/ ) . empty?
18
+ end
19
+
16
20
def valid_password? ( password )
17
- increasing_straight? ( password ) && two_pairs? ( password )
21
+ increasing_straight? ( password ) &&
22
+ two_pairs? ( password ) &&
23
+ excludes_confusing_characters ( password )
18
24
end
19
25
20
26
next_password = 1
Original file line number Diff line number Diff line change @@ -13,8 +13,14 @@ def two_pairs?(password)
13
13
password . scan ( /(.)\1 / ) . count >= 2
14
14
end
15
15
16
+ def excludes_confusing_characters ( password )
17
+ password . scan ( /[iol]/ ) . empty?
18
+ end
19
+
16
20
def valid_password? ( password )
17
- increasing_straight? ( password ) && two_pairs? ( password )
21
+ increasing_straight? ( password ) &&
22
+ two_pairs? ( password ) &&
23
+ excludes_confusing_characters ( password )
18
24
end
19
25
20
26
next_password = 2
You can’t perform that action at this time.
0 commit comments