Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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-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 passStep 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