using System.Text; namespace _6._Zigzag_Conversion; public class Solution { public string Convert(string s, int numRows) { if (numRows == 1) return s; int stepDown = (numRows-2) * 2 + (numRows>0 ? 1 : 0); int stepTop = 0; StringBuilder sb = new StringBuilder(); for (int start = 0; start < numRows; start++) { int j = start; bool toDown = true; while (j