2019-07-02 11:21:58 +00:00
|
|
|
// iterators2.rs
|
2021-02-12 02:24:32 +00:00
|
|
|
// In this exercise, you'll learn some of the unique advantages that iterators
|
|
|
|
// can offer. Follow the steps to complete the exercise.
|
2022-07-14 16:29:09 +00:00
|
|
|
// Execute `rustlings hint iterators2` or use the `hint` watch subcommand for a hint.
|
2019-07-02 11:21:58 +00:00
|
|
|
|
2019-11-11 12:38:24 +00:00
|
|
|
// I AM NOT DONE
|
|
|
|
|
2021-02-12 02:24:32 +00:00
|
|
|
// Step 1.
|
|
|
|
// Complete the `capitalize_first` function.
|
|
|
|
// "hello" -> "Hello"
|
2019-07-02 11:21:58 +00:00
|
|
|
pub fn capitalize_first(input: &str) -> String {
|
|
|
|
let mut c = input.chars();
|
|
|
|
match c.next() {
|
|
|
|
None => String::new(),
|
2021-02-12 02:24:32 +00:00
|
|
|
Some(first) => ???,
|
2019-07-02 11:21:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-12 02:24:32 +00:00
|
|
|
// Step 2.
|
|
|
|
// Apply the `capitalize_first` function to a slice of string slices.
|
|
|
|
// Return a vector of strings.
|
|
|
|
// ["hello", "world"] -> ["Hello", "World"]
|
|
|
|
pub fn capitalize_words_vector(words: &[&str]) -> Vec<String> {
|
|
|
|
vec![]
|
|
|
|
}
|
|
|
|
|
|
|
|
// Step 3.
|
|
|
|
// Apply the `capitalize_first` function again to a slice of string slices.
|
|
|
|
// Return a single string.
|
|
|
|
// ["hello", " ", "world"] -> "Hello World"
|
|
|
|
pub fn capitalize_words_string(words: &[&str]) -> String {
|
|
|
|
String::new()
|
|
|
|
}
|
|
|
|
|
2019-07-02 11:21:58 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_success() {
|
|
|
|
assert_eq!(capitalize_first("hello"), "Hello");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_empty() {
|
|
|
|
assert_eq!(capitalize_first(""), "");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_iterate_string_vec() {
|
|
|
|
let words = vec!["hello", "world"];
|
2021-02-12 02:24:32 +00:00
|
|
|
assert_eq!(capitalize_words_vector(&words), ["Hello", "World"]);
|
2019-07-02 11:21:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_iterate_into_string() {
|
|
|
|
let words = vec!["hello", " ", "world"];
|
2021-02-12 02:24:32 +00:00
|
|
|
assert_eq!(capitalize_words_string(&words), "Hello World");
|
2019-07-02 11:21:58 +00:00
|
|
|
}
|
|
|
|
}
|