Reverse String

class Solution {
public:
void reverseString(vector& s) {
reverse(s.begin(),s.end());
}
};

Comments (0)