Skip to content

Commit a237872

Browse files
authored
Added solution for 2299
1 parent 62f35a6 commit a237872

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

02299. Strong Password Checker II.rs

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
impl Solution {
2+
// Create a boolean for each character. Loop through the individual characters of the string and mark the booleans true if their corresponding condition gets satisfied
3+
pub fn strong_password_checker_ii(password: String) -> bool {
4+
let has_8_chars = (password.len() >= 8);
5+
let mut has_lowercase_letter = false;
6+
let mut has_uppercase_letter = false;
7+
let mut has_digit = false;
8+
let mut has_special_char = false;
9+
let mut has_same_adjacent_char = false;
10+
11+
let special_chars = vec![33, 64, 35, 36, 37, 94, 38, 42, 40, 41, 45, 43];
12+
13+
let mut prev_char_i = -1;
14+
15+
for (idx, ch) in password.chars().enumerate() {
16+
let ch_i = ch as i32;
17+
if (ch_i >= 97) && (ch_i <= 122) {
18+
has_lowercase_letter = true;
19+
}
20+
if (ch_i >= 65) && (ch_i <= 90) {
21+
has_uppercase_letter = true;
22+
}
23+
if (ch_i >= 48) && (ch_i <= 57) {
24+
has_digit = true;
25+
}
26+
if special_chars.contains(&ch_i) {
27+
has_special_char = true;
28+
}
29+
if idx == 0 {
30+
prev_char_i = ch_i;
31+
} else {
32+
if ch_i == prev_char_i {
33+
has_same_adjacent_char = true;
34+
}
35+
prev_char_i = ch_i
36+
}
37+
}
38+
return has_8_chars && has_lowercase_letter && has_uppercase_letter && has_digit && has_special_char && !has_same_adjacent_char;
39+
}
40+
}

0 commit comments

Comments
 (0)