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