leetcode-6. Z字形变换

题目

这里写图片描述

代码

class Solution:
    def convert(self, s, numRows):
        """
        :type s: str
        :type numRows: int
        :rtype: str
        """
        def help(s, numRows): #将字符串s转换成list[[list]]
            lens = len(s)
            L = []
            count = numRows - 1
            nums = numRows*2-2
            i = 0
            while i<lens:
                for j in range(count):
                    temp = []
                    print(i,j)
                    if j==0:
                        for p in range(numRows):
                            temp.append(s[i])
                            i += 1
                            if i>= lens:
                                L.append(temp)
                                return L
                    else:  
                        print('......',i)
                        for p in range(numRows):
                            if p == numRows - j - 1:
                                print(",,,",i)
                                temp.append(s[i])
                                i += 1
                                if i>=lens:
                                    L.append(temp)
                                    return L
                            else:
                                temp.append(1)
                    print(i)
                    L.append(temp)


        if len(s) <= numRows:
            return s
        if numRows == 1:
            return s
        returnL = ""
        L = help(s, numRows)
        len1 = len(L[-1])
        for j in range(numRows):
            for i in range(len(L)-1):
                if L[i][j] != 1:
                    returnL += L[i][j]
            if j<len1:
                if L[-1][j] != 1:
                    returnL += L[-1][j]
        return returnL

学习他人代码

class Solution:
    def convert(self, s, numRows):
        """
        :type s: str
        :type numRows: int
        :rtype: str
        """
        if numRows == 1: return s
        ans = ""
        interval = 2 * (numRows - 1)
        for i in range(0, len(s), interval):
            ans += s[i]
        for row in range(1, numRows - 1):
            inter = 2 * row
            i = row
            while i < len(s):
                ans += s[i]
                inter = interval - inter
                i += inter
        print(ans)
        for i in range(numRows - 1, len(s), interval):
            ans += s[i]
        return ans
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值