mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
798 B
39 lines
798 B
1 year ago
|
## invert_sentence
|
||
|
|
||
|
### Instructions
|
||
|
|
||
|
Write a function called `invert_sentence` that takes a string as input and returns the words in the string in reverse order.
|
||
|
In other words, the function should take a sentence as input and return a new sentence with the words reversed.
|
||
|
|
||
|
### Expected Function
|
||
|
|
||
|
```rust
|
||
|
pub fn invert_sentence(string: &str) -> String {
|
||
|
// Your code goes here
|
||
|
}
|
||
|
```
|
||
|
|
||
|
### Usage
|
||
|
|
||
|
Here is a possible runner to test your function :
|
||
|
|
||
|
```rust
|
||
|
use invert_sentence::invert_sentence;
|
||
|
|
||
|
fn main() {
|
||
|
println!("{}", invert_sentence("Rust is Awesome"));
|
||
|
println!("{}", invert_sentence(" word1 word2 "));
|
||
|
println!("{}", invert_sentence("Hello, World!"));
|
||
|
}
|
||
|
```
|
||
|
|
||
|
And its output:
|
||
|
|
||
|
```console
|
||
|
$ cargo run | cat -e
|
||
|
Awesome is Rust$
|
||
|
word2 word1 $
|
||
|
World! Hello,$
|
||
|
$
|
||
|
```
|