Skip to content

Commit 9127fbc

Browse files
authored
Added solution for 2729
1 parent a6f676b commit 9127fbc

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
impl Solution {
2+
// Create concatenated string with n, 2n and 3n. Then loop through a list from 1 to 9 and if any of those digits aren't present exactly once, return false. If it has 0, return false. Else return true.
3+
pub fn is_fascinating(n: i32) -> bool {
4+
let mut concatenated_string = n.to_string() + &((n * 2).to_string()) + &((n * 3).to_string());
5+
6+
let zeroes:Vec<_> = concatenated_string.match_indices("0").collect();
7+
if (zeroes.len() == 1) {
8+
return false;
9+
}
10+
11+
for i in 1..10 {
12+
let digit_occurrences:Vec<_> = concatenated_string.match_indices(&(i).to_string()).collect();
13+
if digit_occurrences.len() != 1 {
14+
return false;
15+
}
16+
}
17+
18+
return true;
19+
}
20+
}

0 commit comments

Comments
 (0)