Maintenance moved to Monday 17.3. at 13:00. ETA 60 - 90 minutes.
# Write a function solve that reverses the words in a string. # Words are separated by spaces. def solve(string): list = reversed(string.split()) return ' '.join(list)