leetcode/include/s0006_zigzag_conversion.hpp
2022-11-21 21:15:56 +08:00

21 lines
335 B
C++

#ifndef S0006_ZIGZAG_CONVERSION_HPP
#define S0006_ZIGZAG_CONVERSION_HPP
#include <string>
using namespace std;
class Solution {
public:
/**
* @brief Zigzag Conversion
*
* @param s the string to be converted
* @param numRows rows
* @return converted string
*/
string convert(string s, int numRows);
};
#endif