Question: def normalize(input_string): result = [] for letter in input_string: if letter.isalpha(): result.append(letter.lower()) return result In Python, create the following function, def find_missing_letters(sentence) : the input

def normalize(input_string): result = [] for letter in input_string: if letter.isalpha(): result.append(letter.lower()) return result

In Python, create the following function,

def find_missing_letters(sentence):

  • the input sentence is an array/list (created from normalize() function above)

  • returns a sorted array of letters that are NOT in the sentence

  • use the built in Python type set to solve

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!