Rust Taskbook Level 4.4
Given a string, remove all vowels from it.
Given an integer, check that this number has only one divisor other than itself and one.
Given a vector:
let vct: Vec<i16> = Vec::new();
Write a program that will fill this vector with numbers from 1
to 100
.
Write a program that will generate the following string:
"xxx xxx xxx"
Given a vector of integers:
[1, 2, 3, 4, 5, 6]
Get from it all elements whose values are odd numbers:
[1, 3, 5]
Given a vector of characters containing numbers:
!vec['1', '2', '3', '4', '5']
Merge the elements of this vector into an integer:
12345