Question: Define a function which takes a character and a histogram and returns the frequency associated with that character in the given histogram. If the character

Define a function which takes a character and a histogram and returns the frequency associated with that character in the given histogram. If the character doesn't appear in the histogram, it should return 0.

So for example, get_freq( 'a', [['B', 1], ['a', 3], ['n', 2], ['!', 1]] ) should return 3 and get_freq( 'X', [['B', 1], ['a', 3], ['n', 2], ['!', 1]] ) should return 0.

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!