[Leetcode] 6. Zigzag Conversion

1 · Rain Hu · Oct. 25, 2022, 4:34 p.m.
6. Zigzag Conversion Hardness: \(\color{orange}\textsf{Medium}\) Ralated Topics: String 一、題目 The string "PAYPALISHIRING" is written in a zigzag pattern on a given number of rows like this: (you may want to dispaly this pattern in a fixed font for better legibility) \( \quad\texttt{P A H N}\\ \quad\texttt{APLSIIG}\\ \quad\texttt{Y I R}\\ \) And then read line by line: "PAHNAPLSIIGYIR" Write the code that will take a string and make this conversion given a number of rows: string convert(string s, ...