Answered step by step
Verified Expert Solution
Link Copied!

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

image text in transcribed

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)) anotha

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions