Розмір відео: 1280 X 720853 X 480640 X 360
Показувати елементи керування програвачем
Автоматичне відтворення
Автоповтор
Solution code - class Solution {public: string convert(string s, int numRows) { numRows--; int n = s.length(); int j,flag; string ans; if (numRows == 0) { return s; } for (int i=numRows;i>=0;i--) { if (i == numRows) { j = 0; while(j
Solution code -
class Solution {
public:
string convert(string s, int numRows) {
numRows--;
int n = s.length();
int j,flag;
string ans;
if (numRows == 0) {
return s;
}
for (int i=numRows;i>=0;i--) {
if (i == numRows) {
j = 0;
while(j