일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- MyPick31
- 예술영화추천
- Algorithm
- Bookmark
- mongodb
- 타사인증
- Django Blog
- 독립영화플랫폼
- MYSQL
- Exercism
- Blog
- JavaScript
- 장고 프로젝트
- 개발
- passport.js
- Node.js
- 장고 프로젝트 순서
- 장고 개발 순서
- 프로젝트
- 북마크만들기
- join()
- 북마크앱
- ART_Cinema
- python
- 자바스크립트
- 장고
- 알고리즘
- 파이썬 웹프로그래밍 장고
- Django
- til
- Today
- Total
목록CodingTest/LeetCode (7)
Juni_Dev_log
Given a binary tree, write a function to get the maximum width of the given tree. The maximum width of a tree is the maximum width among all levels. : 이진 트리가 주어지면, 주어진 트리의 최대 너비를 얻는 함수를 작성한다. 트리의 최대 너비는 모든 수준 중에서 최대 너비이다. The width of one level is defined as the length between the end-nodes (the leftmost and right most non-null nodes in the level, where the null nodes between the end-nodes are a..
🔥 문제 Given the root of a tree, you are asked to find the most frequent subtree sum. : 주어진 트리의 루트를 통해서, 가장 빈번한 서브트리의 합을 찾아야한다. The subtree sum of a node is defined as the sum of all the node values formed by the subtree rooted at that node (including the node itself). : 노드의 하위 트리 합계는 해당 노드 (노드 자체 포함)에 뿌리를 둔 서브트리에 의해 형성된 모든 노드 값의 합계로 정의됩니다. So what is the most frequent subtree sum value? : 가장 빈번한 ..
🔥 문제 Given a binary tree root and a linked list with head as the first node. Return True if all the elements in the linked list starting from the head correspond to some downward path connected in the binary tree otherwise return False. In this context downward path means a path that starts at some node and goes downwards. Example 1: Input: head = [4,2,8], root = [1,4,4,null,2,2,null,1,null,6,8,..