leetcode6_Z字形變換

class Solution { public: string convert(string s, int numRows) { if (numRows == 1) return s; vector<string> rows(numRows); int curRow = 0; bool goingDown = false;
相關文章
相關標籤/搜索