6. Z 字形變換

class Solution: def convert(self, s, numRows): """ :type s: str :type numRows: int :rtype: str """ str_length = len(s) node_length = 2*numRows - 2 result = ""
相關文章
相關標籤/搜索