LeetCode 6. ZigZag Conversion
https://leetcode-cn.com/problems/zigzag-conversion/
难度:Medium
题目描述:
The string “PAYPALISHIRING” is written in a zigzag pattern on a given number of rows like this:
(you may want to display this pattern in a fixed font for better legibility)
1 | P A H N |
And then read line by line: “PAHNAPLSIIGYIR”
Write the code that will take a string and make this conversion given a number of rows:
1 | string convert(string s, int numRows); |
输入样例:
Example 1:
1 | Input: s = "PAYPALISHIRING", numRows = 3 |
Example 2:
1 | Input: -123 |
Example 3:
1 | Input: s = "PAYPALISHIRING", numRows = 4 |
Note:
Assume we are dealing with an environment which could only store integers within the 32-bit signed integer range: [−231, 231 − 1]. For the purpose of this problem, assume that your function returns 0 when the reversed integer overflows.
该题已提供代码:
1 | class Solution { |
解题思路
实现代码
1 | class Solution { |
LeetCode测试结果
结语
至此,ZigZag Conversion 解决完毕!