leetcode/include/s0038_count_and_say.hpp
2022-11-22 18:06:14 +08:00

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