Easy
004Reverse String
Given an array of characters, return the characters in reverse order.
EXAMPLES
Example 1
Input
{
"s": [
"h",
"e",
"l",
"l",
"o"
]
}
Output
[
"o",
"l",
"l",
"e",
"h"
]FUNCTION SHAPE
s: stringArray→stringArray