deno.land / x / masx200_leetcode_test@10.6.5 / zigzag-conversion / index.ts

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
export default function convert(s: string, numRows: number): string { if (numRows === 1) return s;
const rows: string[] = new Array(numRows).fill(""); let curRow = 0;
let goingDown = false;
for (const c of s) { rows[curRow] += c; if (curRow === 0 || curRow == numRows - 1) { goingDown = !goingDown; } curRow += goingDown ? 1 : -1; } return rows.join("");}
masx200_leetcode_test

Version Info

Tagged at
a year ago