shlogg · Early preview
Madalina Pastiu @maddiepst

Reversing Strings With Python's Reverse Function

Reverse a string using Python: `'world' => 'dlrow', 'word' => 'drow'`. Convert to array, reverse with `reverse()`, then rejoin.

Instructions:
Complete the solution so that it reverses the string passed into it.
'world'  =>  'dlrow'
'word'   =>  'drow'

Thoughts:
I converted the string into an array to utilize the reverse() function for reversing its contents. Then, I rejoined the array back into a string.

This is a CodeWars Challenge of 8kyu Rank (https://www.codewars.com/kata/5168bb5dfe9a00b126000018)