leetcode/include/s0151_reverse_words_in_a_string.hpp

14 lines
200 B
C++

#ifndef S0151_REVERSE_WORDS_IN_A_STRING_HPP
#define S0151_REVERSE_WORDS_IN_A_STRING_HPP
#include <string>
using namespace std;
class Solution {
public:
string reverseWords(string s);
};
#endif