14 lines
200 B
C++
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
|