Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 파이썬 릿코드
- python zip_longest
- leetcode풀기
- 릿코드풀이
- 파이썬 프로그래머스
- python Leetcode
- 파이썬알고리즘
- LeetCode
- python sorted
- leetcode 풀기
- 알고리즘풀이
- 파이썬 알고리즘 풀기
- 릿코드 파이썬
- 릿코드 풀기
- 릿코드
- 잇츠디모
- binary search
- python 알고리즘
- 파이썬 알고리즘
- python 릿코드
- 알고리즘풀기
- leetcode풀이
- 파이썬릿코드풀기
- 파이썬알고리즘풀기
- 상가수익률계산기
- python xor
- 릿코드풀기
- 코틀린기초
- 파이썬릿코드
- python priority queue
Archives
- Today
- Total
소프트웨어에 대한 모든 것
6. Zigzag Conversion 본문
반응형
6. Zigzag Conversion
https://leetcode.com/problems/zigzag-conversion/description/
문제)
솔루션1)
numRows 수 만큼 배열을 생성해서 문자열을 순회하면서 배열에 아래로/위로 움직이면서 문자를 추가
class Solution:
def convert(self, s: str, numRows: int) -> str:
rets = [[] for i in range(numRows)]
idx = 0
# 0 = down, 1 = up
direction = 1
for c in s:
rets[idx].append(c)
if direction == 1:
idx += 1
if idx >= numRows:
idx -= 2
direction = 0
else:
idx -= 1
if idx < 0:
idx += 2
direction = 1
return ''.join([''.join(ret) for ret in rets])
반응형
'알고리즘 > LeetCode' 카테고리의 다른 글
2432. The Employee That Worked on the Longest Task (0) | 2022.12.09 |
---|---|
1026. Maximum Difference Between Node and Ancestor (0) | 2022.12.09 |
462. Minimum Moves to Equal Array Elements II (0) | 2022.07.01 |
5. Longest Palindromic Substring (0) | 2022.05.24 |
LeetCode 풀기 - 79. Word Search (0) | 2022.03.30 |
Comments