Z 字形变换

将一个给定字符串根据给定的行数,以从上往下、从左到右进行 Z 字形排列。

比如输入字符串为 "LEETCODEISHIRING" 行数为 3 时,排列如下:

L C I R
E T O E S I I G
E D H N
之后,你的输出需要从左往右逐行读取,产生出一个新的字符串,比如:"LCIRETOESIIGEDHN"。

请你实现这个将字符串进行指定行数变换的函数:

string convert(string s, int numRows);
示例 1:

输入: s = "LEETCODEISHIRING", numRows = 3
输出: "LCIRETOESIIGEDHN"

class Solution:
    def convert(self, s, numRows):
        if numRows==1:
            return s
        arr = [[] for i in range(numRows)]
        i=0
        index = 0
        down = True
        while index < len(s):
            arr[i].append(s[index])
            if down == True:
                i += 1
            else:
                i -= 1
            if i == 0:
                down = True
            if i == numRows - 1:
                down = False
            index += 1
        res = []
        for i in range(len(arr)):
            res.extend(arr[i])
        return "".join(res)
            

你可能感兴趣的:(Z 字形变换)