일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 109. Convert Sorted List to Binary Search Tree
- Substring with Concatenation of All Words
- 시바견
- t1
- 30. Substring with Concatenation of All Words
- 43. Multiply Strings
- 밴픽
- data science
- kaggle
- concurrency
- shiba
- Class
- LeetCode
- 프로그래머스
- 운영체제
- Decorator
- Protocol
- 315. Count of Smaller Numbers After Self
- Python
- DWG
- Convert Sorted List to Binary Search Tree
- 파이썬
- Python Code
- Regular Expression
- 715. Range Module
- Generator
- iterator
- attribute
- 컴퓨터의 구조
- Python Implementation
Archives
- Today
- Total
목록ZigZag Conversion (1)
Scribbling
LeetCode: 6. ZigZag Conversion
class Solution: def convert(self, s: str, numRows: int) -> str: if numRows == 1: return s board = [[] for _ in range(numRows)] denom = 2 * numRows - 2 for i, char in enumerate(s): remainder = i % denom if remainder < numRows: board[remainder].append(char) else: board[2 * numRows - remainder - 2].append(char) ret = '' for i in range(len(board)): for j in board[i]: ret += j return ret
Computer Science/Coding Test
2021. 8. 16. 15:55