344. Reverse String
Write a function that takes a string as input and returns the string reversed.
Example:Given s = "hello", return "olleh".
clas ......
%matplotlib inline
from mxnet import nd
import numpy as np
from mxnet import autograd,gluon,init,nd
from mxnet.gluon import nn,data as gdata,loss as g ......