public/subjects/lastup/README.md

37 lines
567 B
Markdown
Raw Permalink Normal View History

2021-01-25 18:28:57 +00:00
## lastup
### Instructions
Complete the `lastup` function that takes a string and puts the last letter of each word in uppercase and the rest in lowercase.
### Expected Functions
```rust
pub fn lastup(input: &str) -> String {
}
```
### Usage
Here is a program to test your function.
```rust
use lastup::lastup;
fn main() {
println!("{}", lastup("joe is missing"));
println!("{}", lastup("jill is leaving A"));
println!("{}",lastup("heLLo THere!"));
}
```
And its output
```console
$ cargo run
2021-01-25 18:28:57 +00:00
joE iS missinG
jilL iS leavinG A
hellO therE!
$
2021-01-25 18:28:57 +00:00
```