일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 알고리즘풀기
- python xor
- python priority queue
- 파이썬릿코드
- 파이썬알고리즘풀기
- 릿코드 파이썬
- 상가수익률계산기
- leetcode풀기
- leetcode풀이
- 릿코드
- LeetCode
- 파이썬 알고리즘 풀기
- 잇츠디모
- 파이썬 프로그래머스
- python sorted
- 파이썬알고리즘
- 파이썬 알고리즘
- 코틀린기초
- 릿코드풀기
- leetcode 풀기
- 알고리즘풀이
- 릿코드풀이
- python 릿코드
- 파이썬릿코드풀기
- python zip_longest
- 파이썬 릿코드
- python Leetcode
- 릿코드 풀기
- binary search
- python 알고리즘
- Today
- Total
목록python zip_longest (3)
소프트웨어에 대한 모든 것
165. Compare Version Numbers https://leetcode.com/problems/compare-version-numbers/ Compare Version Numbers - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 문제) 솔루션1) zip_longest 함수 활용 from itertools import zip_longest class Solution: def compareVersion(self, version1: str, versio..
zip? Syntax : zip(*iterators) Parameters : Python iterables or containers ( list, string etc ) Return Value : Returns a single iterator object, having mapped values from all the containers. zip은 2개 이상의 iterables 객체를 한 개의 iterable 객체로 결합시킵니다. x = [1, 2, 3] y = ['a', 'b', 'c'] combination = list(zip(x, y)) print(combination) 출력 [(1, 'a'), (2, 'b'), (3, 'c')] 일반적을 두 개의 분리된 collections를 한 루프에서 동작 시킬..
143. Reorder List https://leetcode.com/problems/reorder-list/ Reorder List - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 문제) 솔루션1) two deques 두 개의 deque() 자료구조를 사용합니다. 풀이 전략: deque() 자료구조 q1, q2를 준비 리스트 전체를 순회해서 모든 값을 q1에 넣음 q1 아이템에서 뒤의 절반에 해당되는 부분을 pop()해서 q2에 추가 q1, q2 아이템을 번..