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
- leetcode풀기
- 알고리즘풀이
- leetcode 풀기
- 잇츠디모
- 파이썬릿코드
- 알고리즘풀기
- python Leetcode
- 파이썬 알고리즘 풀기
- 릿코드풀이
- python xor
- 파이썬알고리즘
- 파이썬알고리즘풀기
- python sorted
- python 알고리즘
- python 릿코드
- LeetCode
- leetcode풀이
- 파이썬릿코드풀기
- 릿코드 풀기
- 릿코드풀기
- 파이썬 프로그래머스
- 상가수익률계산기
- 파이썬 알고리즘
- 릿코드
- python priority queue
- 코틀린기초
- 파이썬 릿코드
- 릿코드 파이썬
- binary search
- python zip_longest
Archives
- Today
- Total
목록python linked list (1)
소프트웨어에 대한 모든 것
LeetCode 풀기 - 143. Reorder List
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 아이템을 번..
알고리즘/LeetCode
2021. 12. 23. 07:02