-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzigzag_string.py
51 lines (41 loc) · 1.06 KB
/
zigzag_string.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
"""
The string "PAYPALISHIRING" is written in a zigzag pattern
on a given number of rows like this:
P A H N
A P L S I I G
Y I R
And then read line by line: "PAHNAPLSIIGYIR".
Take a string and make this conversion given a number of rows.
Examples:
Input: string = "PAYPALISHIRING", numRows = 3
Output: "PAHNAPLSIIGYIR"
Explanation:
P A H N
A P L S I I G
Y I R
Input: string = "PAYPALISHIRING", numRows = 4
Output: "PINALSIGYAHRPI"
Explanation:
P I N
A L S I G
Y A H R
P I
Input: string = "A", numRows = 1
Output: "A"
"""
def zigzag_string(string: str, num_rows: int) -> str:
if num_rows == 1 or num_rows >= len(string):
return string
rows = [""] * num_rows
current_row = 0
going_down = -1
for char in string:
rows[current_row] += char
if current_row == 0 or current_row == num_rows - 1:
going_down *= -1
current_row += going_down
return "".join(rows)
if __name__ == "__main__":
text = "PAYPALISHIRING"
print(zigzag_string(text, 3))
print(zigzag_string(text, 4))