Rust Taskbook Level 4.2 of the Rust taskbook
Given a string of letters and numbers, get the position of the last digit in that string.
Print to the console all numbers in the range from 10
to 1000
whose first digit is even.
Given a vector:
let vct = vec![1, 2, 3, 4, 5];
Find the sum of the squares of the elements of this vector and output it to the console.
Given an integer:
let num: u16 = 12345;
Print to the console the number of even digits in this number.
Given an integer:
let num: u16 = 12;
Print all divisors of this number to the console.
Two arrays are given:
int arr1: [i8: 5] = [1, 2, 3, 4, 5];
int arr2: [i8: 5] = [1, 2, 3];
Check that all elements of the first array are in the second.
Given an integer:
let num: u16 = 12345;
Swap the first and last digits of this number:
52341