Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Python CANNOT use split Scrabble Function Name: longestWord Parameters: sentence ( str ) Returns: a string ( str ) Description: After texting your friend, you
Python
CANNOT use split
Scrabble Function Name: longestWord Parameters: sentence ( str ) Returns: a string ( str ) Description: After texting your friend, you invite them over for a game of Scrabble. You don't really know the rules, so you try to find the longest word you can make. Write a function that takes in a sentence and returns the longest word in it. All words will be surrounded by one space on each side. If multiple words have the same longest length, return the one that ap- pears last in the sentence. You may not use .split(() or any similar methods. >>> sentence = " run that back turbo " >>> print(longestWord(sentence)) turbo >>> sentence = " jetson made anotha one >>> print(longestWord(sentence)) anothaStep 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