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.
 
 
 
 
PirozhokForAlem 9f2e6fa7f4 Update README.md 3 years ago
..
README.md Update README.md 3 years ago

README.md

groceries

Instructions

Create a function called insert that inserts a new element at the end of the Vec.

And another function at_index that returns the value found at the index passed as an argument.

Notions

Expected Functions

pub fn insert(vec: &mut Vec<String>, val: String) {
}

pub fn at_index(vec: &Vec<String>, index: usize) -> String {
}

Usage

Here is a possible program to test your function:

use groceries::{insert, at_index};

fn main() {
	let mut groceries = vec![
		"yogurt".to_string(),
		"panetone".to_string(),
		"bread".to_string(),
		"cheese".to_string(),
	];
	insert(&mut groceries, String::from("nuts"));
	println!("The groceries list now = {:?}", &groceries);
	println!(
		"The second element of the grocery  list is {:?}",
		at_index(&groceries, 1)
	);
}

And its output:

student@ubuntu:~/[[ROOT]]/test$ cargo run
The groceries list now = ["yogurt", "panetone", "bread", "cheese", "nuts"]
The second element of the grocery  list is "panetone"
student@ubuntu:~/[[ROOT]]/test$