You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
923 B

## name_initials
### Instructions
3 years ago
Create a **function** called `initials`, this function will receive a vector of string literals
with names and return a vector of Strings with the initials of each name.
> This exercise will test the **heap allocation** of your function!
> So try your best to allocate the minimum data on the heap!
### Notions
3 years ago
- [stack and heap](https://doc.rust-lang.org/1.22.0/book/first-edition/the-stack-and-the-heap.html)
### Expected Function
```rust
3 years ago
pub fn initials(names: &mut Vec<&str>) -> Vec<String> {
}
```
### Usage
3 years ago
Here is a program to test your function:
```rust
use name_initials::initials;
fn main() {
let mut names = vec!["Harry Potter", "Someone Else", "J. L.", "Barack Obama"]
3 years ago
println!("{:?}", initials(&mut names));
}
```
And its output
```console
student@ubuntu:~/[[ROOT]]/test$ cargo run
["H. P.", "S. E.", "J. L.", "B. O."]
student@ubuntu:~/[[ROOT]]/test$
```