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)
1 |
|
And then read line by line: "PAHNAPLSIIGYIR"
Write the code that will take a string and make this conversion given a number of rows:
1 |
|
Example 1:
1 |
|
Example 2:
1 |
|
Related Topics: String
解題邏輯與實作
基本上這題就是在找規律,有點麻煩的說…
用一個比較好說明的例子,在找規律的時候,我先觀察了直行的部分:
1 |
|
取出各個 row ,直行的部分,會發現它們都是等差數列,其差值可表示為 $2\ast(n-1)$
1 |
|
另外可以發現,除了第一列與最後一列(row = 0 與 n-1)外,其他列在兩個直行之間會在多輸出一個字元,將這個字元與前一個字元合併用 pair 表示,每一個 pair 都是一個等差,其差值可表示為 $2\ast(n-1-i)$,其中 $i = 1, … n-2$。
1 |
|
此外,需要稍微注意一下corner case,為了簡單起見,我將 numRows 小於等於 1,以及 numRows 大於等於 s 的長度的 case,做了特別判斷,直接將輸入的 s 回傳回去。
1 |
|