일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 릿코드
- 릿코드 파이썬
- 릿코드풀이
- 파이썬알고리즘풀기
- 파이썬알고리즘
- leetcode풀이
- 코틀린기초
- python priority queue
- 파이썬 알고리즘
- python sorted
- python xor
- 알고리즘풀기
- 파이썬릿코드풀기
- leetcode 풀기
- LeetCode
- python Leetcode
- leetcode풀기
- 릿코드풀기
- python 알고리즘
- python zip_longest
- binary search
- 파이썬 알고리즘 풀기
- 알고리즘풀이
- 릿코드
- 잇츠디모
- 파이썬릿코드
- 파이썬 릿코드
- 릿코드 풀기
- Today
- Total
목록릿코드 알고리즘 풀기 (2)
소프트웨어에 대한 모든 것
1572. Matrix Diagonal Sum https://leetcode.com/problems/matrix-diagonal-sum/ Matrix Diagonal Sum - 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) - Straight forward 왼쪽 상단에서 부터 오른쪽 하단으로 탐색하면서 더합니다. 오른쪽 상단에서 부터 왼쪽 하단으로 탐색하면서 더합니다. 만약 매트릭스가 row가 홀수 크기로 되어 있다면 중간에 원소를 두 번 더했..
19. Remove Nth Node From End of List https://leetcode.com/problems/remove-nth-node-from-end-of-list/discuss/?currentPage=1&orderBy=most_votes&query= Remove Nth Node From End of List - LeetCode Discuss 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) 스택 자료구조를 사용한다. 모든 노드를 순회하면서 스택에 ..