Question: Question 2 0 ( Advanced problem ) It is required to write a function to check if a robot have been instructed to move in
Question Advanced problem It is required to write a function to check if a robot have been instructed to move in a loop starts and stops at the same location The robot is positioned on a grid, in the location and facing North. The robot can receive a sequence of instructions, where: F: move forward L: rotate deg on the spot R: rotate deg on the spot For example: FFLLFF in this sequence the robot moves from to then turns degrees, and then returns to then Write a function that accept a string that represent sequence of moves path and return True if this sequence represent a loop, False otherwise. The function has the following definition: def isloop path: BE IT IT IT Input: path as string represent the robot moves Output: True if path is a loop, False otherwise Examples: isloop FFLLFF True is loop FFRFRFFRF True isloop FRFF False isloop True isloop F False isloop L True
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
