Question: Searching Challenge Have the function SearchingChallenge ( str ) take the str parameter, search for all the numbers in the string, add them together, then

Searching Challenge
Have the function
SearchingChallenge (str) take the str parameter, search for all the numbers in the string, add them together, then return that final number divided by the total amount of letters in the string. For example: if str is "Hello 9World 2, Nice D7ay!" the output should be 2. First if you add up all the numbers, 6+9+2+8+7 you get 32.
Then there are 17 letters in the string. 32
/17=1.882, and the final answer should
be rounded to the nearest whole number, so the answer is 2. Only single digit numbers separated by spaces will be used throughout the whole string (So this won't ever be the case: hello44444 world). Each string will also have at least one letter.
Examples
Input: "H3e1109-9"
Output: 4
Input: "One Number*1*"
Output: 0
Browse Resources
powered by Google
Search for any help or documentation you might need for this problem. For example: array indexing, Ruby hash tables, etc.
C#
1
2
3
4
5
7
8
9
10
11
12
13
14
15
16
17
18
19
using System
class MainCli
public stat
// code g
return str
}
static void M
// keep this
Console. Writ
}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!