complete 09

This commit is contained in:
kingecg 2025-09-24 23:23:51 +08:00
parent c40d940946
commit 136cbbee80
6 changed files with 110 additions and 13 deletions

View File

@ -1,6 +1,6 @@
DON'T EDIT THIS FILE! DON'T EDIT THIS FILE!
strings1 modules1
intro1 intro1
intro2 intro2
@ -38,4 +38,8 @@ structs3
enums1 enums1
enums2 enums2
enums3 enums3
strings1
strings2
strings3
strings4
quiz2 quiz2

View File

@ -6,7 +6,7 @@ fn is_a_color_word(attempt: &str) -> bool {
fn main() { fn main() {
let word = String::from("green"); // Don't change this line. let word = String::from("green"); // Don't change this line.
if is_a_color_word(word) { if is_a_color_word(word.as_str()) {
println!("That is a color word I know!"); println!("That is a color word I know!");
} else { } else {
println!("That is not a color word I know."); println!("That is not a color word I know.");

View File

@ -1,13 +1,26 @@
fn trim_me(input: &str) -> &str { fn trim_me(input: &str) -> &str {
// TODO: Remove whitespace from both ends of a string. // TODO: Remove whitespace from both ends of a string
// can find the 1st not whitespace and last not whitespace and then return slice
let f = input
.find(|c: char| !c.is_whitespace())
.unwrap_or(input.len());
let r = input.rfind(|c: char| !c.is_whitespace()).unwrap_or(0);
if f < r {
&input[f..r + 1]
} else {
&input[..input.len() - f]
}
// input.trim()
} }
fn compose_me(input: &str) -> String { fn compose_me(input: &str) -> String {
// TODO: Add " world!" to the string! There are multiple ways to do this. // TODO: Add " world!" to the string! There are multiple ways to do this.
input.to_owned() + " world!"
} }
fn replace_me(input: &str) -> String { fn replace_me(input: &str) -> String {
// TODO: Replace "cars" in the string with "balloons". // TODO: Replace "cars" in the string with "balloons".
input.to_owned().replace("cars", "balloons")
} }
fn main() { fn main() {
@ -20,6 +33,7 @@ mod tests {
#[test] #[test]
fn trim_a_string() { fn trim_a_string() {
assert_eq!(trim_me(" "), "");
assert_eq!(trim_me("Hello! "), "Hello!"); assert_eq!(trim_me("Hello! "), "Hello!");
assert_eq!(trim_me(" What's up!"), "What's up!"); assert_eq!(trim_me(" What's up!"), "What's up!");
assert_eq!(trim_me(" Hola! "), "Hola!"); assert_eq!(trim_me(" Hola! "), "Hola!");

View File

@ -1,5 +1,5 @@
// Calls of this function should be replaced with calls of `string_slice` or `string`. // Calls of this function should be replaced with calls of `string_slice` or `string`.
fn placeholder() {} fn placeholder(_input: String) {}
fn string_slice(arg: &str) { fn string_slice(arg: &str) {
println!("{arg}"); println!("{arg}");
@ -13,7 +13,7 @@ fn string(arg: String) {
// Your task is to replace `placeholder(…)` with either `string_slice(…)` // Your task is to replace `placeholder(…)` with either `string_slice(…)`
// or `string(…)` depending on what you think each value is. // or `string(…)` depending on what you think each value is.
fn main() { fn main() {
placeholder("blue"); string_slice("blue");
placeholder("red".to_string()); placeholder("red".to_string());
@ -27,9 +27,9 @@ fn main() {
// WARNING: This is byte indexing, not character indexing. // WARNING: This is byte indexing, not character indexing.
// Character indexing can be done using `s.chars().nth(INDEX)`. // Character indexing can be done using `s.chars().nth(INDEX)`.
placeholder(&String::from("abc")[0..1]); placeholder(String::from("abc")[0..1].to_string());
placeholder(" hello there ".trim()); placeholder(" hello there ".trim().to_string());
placeholder("Happy Monday!".replace("Mon", "Tues")); placeholder("Happy Monday!".replace("Mon", "Tues"));

View File

@ -1,4 +1,49 @@
fn main() { fn trim_me(input: &str) -> &str {
// DON'T EDIT THIS SOLUTION FILE! input.trim()
// It will be automatically filled after you finish the exercise. }
fn compose_me(input: &str) -> String {
// The macro `format!` has the same syntax as `println!`, but it returns a
// string instead of printing it to the terminal.
// Equivalent to `input.to_string() + " world!"`
format!("{input} world!")
}
fn replace_me(input: &str) -> String {
input.replace("cars", "balloons")
}
fn main() {
// You can optionally experiment here.
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn trim_a_string() {
assert_eq!(trim_me("Hello! "), "Hello!");
assert_eq!(trim_me(" What's up!"), "What's up!");
assert_eq!(trim_me(" Hola! "), "Hola!");
assert_eq!(trim_me("Hi!"), "Hi!");
}
#[test]
fn compose_a_string() {
assert_eq!(compose_me("Hello"), "Hello world!");
assert_eq!(compose_me("Goodbye"), "Goodbye world!");
}
#[test]
fn replace_a_string() {
assert_eq!(
replace_me("I think cars are cool"),
"I think balloons are cool",
);
assert_eq!(
replace_me("I love to look at cars"),
"I love to look at balloons",
);
}
} }

View File

@ -1,4 +1,38 @@
fn main() { fn string_slice(arg: &str) {
// DON'T EDIT THIS SOLUTION FILE! println!("{arg}");
// It will be automatically filled after you finish the exercise. }
fn string(arg: String) {
println!("{arg}");
}
fn main() {
string_slice("blue");
string("red".to_string());
string(String::from("hi"));
string("rust is fun!".to_owned());
// Here, both answers work.
// `.into()` converts a type into an expected type.
// If it is called where `String` is expected, it will convert `&str` to `String`.
string("nice weather".into());
// But if it is called where `&str` is expected, then `&str` is kept `&str` since no conversion is needed.
// If you remove the `#[allow(…)]` line, then Clippy will tell you to remove `.into()` below since it is a useless conversion.
#[allow(clippy::useless_conversion)]
string_slice("nice weather".into());
string(format!("Interpolation {}", "Station"));
// WARNING: This is byte indexing, not character indexing.
// Character indexing can be done using `s.chars().nth(INDEX)`.
string_slice(&String::from("abc")[0..1]);
string_slice(" hello there ".trim());
string("Happy Monday!".replace("Mon", "Tues"));
string("mY sHiFt KeY iS sTiCkY".to_lowercase());
} }