summaryrefslogtreecommitdiff
path: root/remove-duplicate-letters/src/main.rs
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 /remove-duplicate-letters/src/main.rs
Initial commitHEADmain
Diffstat (limited to 'remove-duplicate-letters/src/main.rs')
-rw-r--r--remove-duplicate-letters/src/main.rs27
1 files changed, 27 insertions, 0 deletions
diff --git a/remove-duplicate-letters/src/main.rs b/remove-duplicate-letters/src/main.rs
new file mode 100644
index 0000000..9cc7296
--- /dev/null
+++ b/remove-duplicate-letters/src/main.rs
@@ -0,0 +1,27 @@
+fn main() {
+ println!("Hello, world!");
+ let tests = [
+ ("bcabc", "abc"),
+ ("cbacdcbc", "acdb")
+ ];
+
+ for test in tests {
+ println!("{:?} is {:?} should be {:?}", test.0,
+ Solution::remove_duplicate_letters(test.0.to_string()), test.1);
+ }
+}
+
+struct Solution;
+
+impl Solution {
+ pub fn remove_duplicate_letters(s: String) -> String {
+ let mut a: Vec<char> = Vec::with_capacity(s.len());
+ let start = s.chars().enumerate().reduce(|a,b| if a.1 < b.1 {a} else {b});
+ for c in s.chars().skip(start.unwrap().0) {
+ if a.last().is_none() || c > *a.last().unwrap() {
+ a.push(c);
+ }
+ }
+ a.iter().collect::<String>()
+ }
+}