This commit is contained in:
2024-04-07 21:15:38 -04:00
parent 64a7939eb7
commit 1d6ca6a3d6
5 changed files with 6 additions and 14 deletions

View File

@@ -3,8 +3,6 @@
// Execute `rustlings hint strings3` or use the `hint` watch subcommand for a
// hint.
// I AM NOT DONE
fn trim_me(input: &str) -> String {
// TODO: Remove whitespace from both ends of a string!
input.trim().to_string()

View File

@@ -7,8 +7,6 @@
//
// No hints this time!
// I AM NOT DONE
fn string_slice(arg: &str) {
println!("{}", arg);
}