马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
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);
Example 1:
Input: s = "PAYPALISHIRING", numRows = 3
Output: "PAHNAPLSIIGYIR"
Example 2:
Input: s = "PAYPALISHIRING", numRows = 4
Output: "PINALSIGYAHRPI"
Explanation:
P I N
A L S I G
Y A H R
P I
class Solution:
def convert(self, s: str, numRows: int) -> str:
if numRows == 0 or s == None or len(s) == 0:
return ""
if numRows == 1:
return s
result = ['' for _ in range(numRows)]
count = 0
flag = 0
for i in range(len(s)):
if flag == 0:
result[count] += (s[i])
count += 1
if count == numRows - 1:
flag = 1 - flag
else:
result[count] += (s[i])
count -= 1
if count == 0:
flag = 1 - flag
return "".join(result)
|