Write a function that takes a string as input and returns the string reversed.
public class Solution {
public String reverseString(String s) {
if(s==null || s.length()==0){
return s;
}
int left = 0;
int right = s.length()-1;
char[] sChar = s.toCharArray();
while(left