summaryrefslogtreecommitdiff
path: root/decrypt-string-from-alphabet-to-integer-mapping/src
diff options
context:
space:
mode:
authorOrangerot <purple@orangerot.dev>2024-06-27 11:30:16 +0200
committerOrangerot <purple@orangerot.dev>2024-06-27 11:30:16 +0200
commit4b0a6a01b051a4ebfbc17661d14cb23fe4f275fb (patch)
tree0072cca328fe5adb2ed61004010228ff85e2164d /decrypt-string-from-alphabet-to-integer-mapping/src
Initial commitHEADmain
Diffstat (limited to 'decrypt-string-from-alphabet-to-integer-mapping/src')
-rw-r--r--decrypt-string-from-alphabet-to-integer-mapping/src/main.rs22
1 files changed, 22 insertions, 0 deletions
diff --git a/decrypt-string-from-alphabet-to-integer-mapping/src/main.rs b/decrypt-string-from-alphabet-to-integer-mapping/src/main.rs
new file mode 100644
index 0000000..b3ace31
--- /dev/null
+++ b/decrypt-string-from-alphabet-to-integer-mapping/src/main.rs
@@ -0,0 +1,22 @@
+fn main() {
+ println!("Hello, world!");
+}
+
+struct Solution;
+
+impl Solution {
+ pub fn freq_alphabets(mut s: String) -> String {
+ for i in 10..=26 {
+ let mut integer_str = i.to_string();
+ integer_str.push_str("#");
+ s = s.replace(&integer_str, &char::from_u32(96 + i).unwrap().to_string() );
+ }
+ for i in 1..=9 {
+ let integer_str = i.to_string();
+ s = s.replace(&integer_str, &char::from_u32(96 + i).unwrap().to_string() );
+ }
+ let i = s.chars().rev();
+ i.map(|x| if x == '#' {i.take()})
+ s
+ }
+}