From 4b0a6a01b051a4ebfbc17661d14cb23fe4f275fb Mon Sep 17 00:00:00 2001 From: Orangerot Date: Thu, 27 Jun 2024 11:30:16 +0200 Subject: Initial commit --- reverse-words-in-a-string-iii/src/main.rs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 reverse-words-in-a-string-iii/src/main.rs (limited to 'reverse-words-in-a-string-iii/src') diff --git a/reverse-words-in-a-string-iii/src/main.rs b/reverse-words-in-a-string-iii/src/main.rs new file mode 100644 index 0000000..473b428 --- /dev/null +++ b/reverse-words-in-a-string-iii/src/main.rs @@ -0,0 +1,12 @@ +fn main() { + println!("Hello, world!"); +} + +struct Solution; + +impl Solution { + pub fn reverse_words(mut s: String) -> String { + unsafe {s.as_bytes_mut() }.split_mut(|&x| x == b' ').for_each(|x| x.reverse()); + s + } +} -- cgit v1.2.3