Reverse a String easy
strings

Write a function solution(s) that returns the string s reversed.

Example

solution("hello") → "olleh"
solution("Python") → "nohtyP"
solution.py
💡 Tip: Press Ctrl+Enter to run