Answered step by step
Verified Expert Solution
Question
1 Approved Answer
- Complete the vector_iter function. Iterate through the given & mut Vec . If the word has an even number of characters, reverse the word
- Complete the vector_iter function. Iterate through the given & mut Vec . If the word has an even number of characters, reverse the word by using the reverse_word function. If the word has an odd number of characters, count the number of vowels in the word by using count_vowels. You should return a tuple containg a Vec of the reversed words and the total number of vowels from odd lengthed words. You will need to clone the reverse word into the return Vector. - Complete the function. Reverse the given mutable String reference. This function does not return anything so you will need to directly modify the given String reference. - Complete the function. Count the number of vowels in the given \&str. In this instance, we mean the vowels a,e,i,o, and u. Do not worry about y. You will need to handle words with upper and lower case vowels. You should not modify the contents of the passed \&str. You will need to return the number of vowels as an i32
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started