logo CodeStepByStep logo

glue_reverse

Language/Type: Python functional programming lists collections

Write a function called glue_reverse that accepts a list of strings as its parameter and returns a single string consisting of the list's elements concatenated together in reverse order. For example, if the list stores ["the", "quick", "brown", "fox"], you should return "foxbrownquickthe". If the list is empty, return an empty string, "".

Use Python's functional programming constructs, such as list comprehensions, map, filter, reduce, to implement your function. Do not use any loops or recursion in your solution.

Function: Write a Python function as described, not a complete program.

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.