Question: undefined Write the body of a function longest_string(L) which consumes a non-empty list of strings and returns the longest string by length or the first

undefined Write the body of a function longest_string(L) which consumes a non-emptyundefined

Write the body of a function longest_string(L) which consumes a non-empty list of strings and returns the longest string by length or the first one if there are multiple such strings. Do not use recursion or abstract list functions. 0/3 points Attempts: 0 / Unlimited 1 def longest_string(L): 2 3 Returns the longest string 4 5 longest_string: (listof str) -> Str 6 Requires: 7 len(L) > 0 8 9 Examples: 10 longest_string([""]) => 11 longest_string(["banana", "apple"]) => "banana" 12 longest_string(["banana", "apples"]) => "banana" 13 14 ##YOUR CODE GOES HERE 15 pass

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!