52 of 100 menu

Rust Taskbook Level 6.2

Print the name of tomorrow's day of the week.

Ask the user to enter a date in the format year-month-day. Check if the value entered is correct.

Ask the user to enter an integer via the console. Check if the value entered is correct.

Get a tuple containing the current date in the following format:

("2025-12-31", "mon")

Write a program that will generate the following string:

"12345 54321"

Given some array, for example, like this:

[1, 2, 3, 4, 5, 6}

Transform our array into a two-dimensional vector, each element containing a pair of array elements:

[ [1, 2] [3, 4] [5, 6] ]
enru