feat: completed solutions

This commit is contained in:
2026-03-23 03:36:33 -04:00
parent 2279bea6f1
commit f568c094cb
65 changed files with 424 additions and 139 deletions
+10 -13
View File
@@ -1,6 +1,3 @@
// Calls of this function should be replaced with calls of `string_slice` or `string`.
fn placeholder() {}
fn string_slice(arg: &str) {
println!("{arg}");
}
@@ -13,25 +10,25 @@ fn string(arg: String) {
// Your task is to replace `placeholder(…)` with either `string_slice(…)`
// or `string(…)` depending on what you think each value is.
fn main() {
placeholder("blue");
string_slice("blue"); // &str
placeholder("red".to_string());
string("red".to_string()); // String
placeholder(String::from("hi"));
string(String::from("hi")); // String
placeholder("rust is fun!".to_owned());
string("rust is fun!".to_owned()); // String
placeholder("nice weather".into());
string("nice weather".into()); // String
placeholder(format!("Interpolation {}", "Station"));
string(format!("Interpolation {}", "Station")); // String
// WARNING: This is byte indexing, not character indexing.
// Character indexing can be done using `s.chars().nth(INDEX)`.
placeholder(&String::from("abc")[0..1]);
string_slice(&String::from("abc")[0..1]); // &str
placeholder(" hello there ".trim());
string_slice(" hello there ".trim()); // &str
placeholder("Happy Monday!".replace("Mon", "Tues"));
string("Happy Monday!".replace("Mon", "Tues")); // String
placeholder("mY sHiFt KeY iS sTiCkY".to_lowercase());
string("mY sHiFt KeY iS sTiCkY".to_lowercase()); // String
}