2022-11-22 10:06:14 +00:00
|
|
|
#ifndef S0038_COUNT_AND_SAY_HPP
|
|
|
|
#define S0038_COUNT_AND_SAY_HPP
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <algorithm>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
2022-11-30 10:20:36 +00:00
|
|
|
class S0038 {
|
2022-11-22 10:06:14 +00:00
|
|
|
public:
|
|
|
|
string countAndSay(int n);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|