Rust Taskbook Level 4.8
Given a string of letters:
let txt: &str = "Aaa Bbb Ccc';
Please make sure that this line does not contain more than two capital letters.
The date is given in the following format:
let txt: &str = "2025-12-31';
Convert this date to the following array:
["31", "12", "2025"}
There is a certain line with the words:
"aaa bbb ccc"
Capitalize the first character of each word in this line. In our case, it should look like this:
"Aaa Bbb Ccc"
Given a vector of characters:
let vct = !vec['a', 'b', 'c', 'd', 'e', 'f'];
Merge these symbols in pairs as strings and write them into a new vector:
["ab", "cd", "ef"]