mirror of https://github.com/01-edu/public.git
eslopfer
2 years ago
1 changed files with 46 additions and 0 deletions
@ -0,0 +1,46 @@
|
||||
## modify_letter |
||||
|
||||
### Instructions |
||||
|
||||
Create a **function** `remove_letter_sensitive` that returns a string without the letter specified as argument |
||||
|
||||
Create a **function** `remove_letter_insensitive` that returns a string without the letter specified as argument (ignoring case) |
||||
|
||||
Create a **function** `swap_letter_case` that returns a string swapping the case for the chosen letter. |
||||
|
||||
### Expected Functions |
||||
|
||||
```rust |
||||
pub fn remove_letter_sensitive(s: &str, letter: char) -> String { |
||||
} |
||||
|
||||
pub fn remove_letter_insensitive(s: &str, letter: char) -> String { |
||||
} |
||||
|
||||
pub fn swap_letter_case(s: &str, letter: char) -> String { |
||||
} |
||||
``` |
||||
|
||||
### Usage |
||||
|
||||
Here is a program to test your functions. |
||||
|
||||
```rust |
||||
use modify_letter::*modify_letter*; |
||||
|
||||
fn main() { |
||||
println!("{}", remove_letter_sensitive("Joje jis mijssjing", "j")); |
||||
println!("{}", remove_letter_insensitive("jaillA ais swiaAmmingA", "A")); |
||||
println!("{}", swap_letter_case("hEllo therE", "e")); |
||||
} |
||||
``` |
||||
|
||||
And its output |
||||
|
||||
```console |
||||
$ cargo run |
||||
Joe is missing |
||||
Jill is swimming |
||||
Hello thERe |
||||
$ |
||||
``` |
Loading…
Reference in new issue