15 lines
193 B
C++
15 lines
193 B
C++
|
#ifndef S0038_COUNT_AND_SAY_HPP
|
||
|
#define S0038_COUNT_AND_SAY_HPP
|
||
|
|
||
|
#include <string>
|
||
|
#include <algorithm>
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
class Solution {
|
||
|
public:
|
||
|
string countAndSay(int n);
|
||
|
};
|
||
|
|
||
|
#endif
|