borrow string here

This commit is contained in:
Simon Gardling
2022-04-04 10:18:29 -04:00
parent 6efeba38dd
commit 3aee254de2
2 changed files with 6 additions and 6 deletions

View File

@@ -1,7 +1,7 @@
use crate::misc::chars_take;
/// Generate a hint based on the input `input`, returns an `Option<String>`
pub fn generate_hint(input: String) -> HintEnum<'static> {
pub fn generate_hint(input: &str) -> HintEnum<'static> {
if input.is_empty() {
return HintEnum::Single("x^2");
}
@@ -119,7 +119,7 @@ mod tests {
for (key, value) in values {
println!("{} + {:?}", key, value);
assert_eq!(generate_hint(key.to_string()), value);
assert_eq!(generate_hint(key), value);
}
}
}