The remove_sort_reverse function takes a list, removes all "s" in the list elements, sorts and then reverses the remaining elements
<h3>The actual program</h3>
The program in Python, where comments are used to explain each line is as follows:
#This defines the function
def remove_sort_reverse(myList):
#This iterates through the list
for i in range(len(myList)):
#This removes all the s in the list elements
myList[i] = myList[i].replace("s","")
#This sorts and reverses the list elements
myList.sort(reverse=True)
#This returns the updated list
return(myList)
Read more about Python functions at:
https://brainly.in/question/10211834