码迷,mamicode.com
首页 > 其他好文 > 详细

6. ZigZag Conversion

时间:2018-06-05 23:15:23      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:字母   ant   sig   better   wan   ring   step   字母数   python   

Description:

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)
P   A   H   N
A P L S I I G
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, int numRows);

  

Examples:

Input: s = "PAYPALISHIRING", numRows = 3
Output: "PAHNAPLSIIGYIR"
Input: s = "PAYPALISHIRING", numRows = 4
Output: "PINALSIGYAHRPI"
Explanation:

P     I    N
A   L S  I G
Y A   H R
P     I 

Solutions:

 

class Solution(object):
    def convert(self, s, numRows):
        """
        :type s: str
        :type numRows: int
        :rtype: str
        """
        if numRows == 1 or numRows >= len(s):  # 如果“行”数为一或者字母数小于“行”数
            return s

        L = [‘‘] * numRows  #
        index, step = 0, 1

        for x in s:
            L[index] += x   # 不太好理解?
            if index == 0:
                step = 1
            elif index == numRows -1:
                step = -1
            index += step

        return ‘‘.join(L)

  

6. ZigZag Conversion

标签:字母   ant   sig   better   wan   ring   step   字母数   python   

原文地址:https://www.cnblogs.com/qianyuesheng/p/9108321.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!