일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 프로젝트
- 독립영화플랫폼
- JavaScript
- Django Blog
- passport.js
- 알고리즘
- 타사인증
- python
- til
- MyPick31
- 장고
- 자바스크립트
- Blog
- 장고 프로젝트 순서
- MYSQL
- 예술영화추천
- 장고 프로젝트
- 개발
- Exercism
- Node.js
- Bookmark
- 파이썬 웹프로그래밍 장고
- join()
- Django
- Algorithm
- 북마크만들기
- mongodb
- 장고 개발 순서
- 북마크앱
- ART_Cinema
- Today
- Total
목록분류 전체보기 (141)
Juni_Dev_log
📚 파이썬 기초 문법 📌 변수 : 데이터들을 저장하는 공간 ================================== 영문과 숫자, _로 이루어진다. 대소문자로 시작한다 특수문자를 사용하면 안된다. ($,% 등) 키워드를 사용하면 안된다. (if, for 등) ================================== 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 a = 1 # 1을 변수a에 대입한다. A = 2 A1 = 3 #2b = 4 : 변수명은 숫자로 시작하면 안됨 _b = 4 print(a, A, A1, _b) a, b, c = 3, 2, 1 print(a,b,c) # 값 교환 a, b = 10,..
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..
▶ Perfect Numbers 📌 Problem Introduction Determine if a number is perfect, abundant, or deficient based on Nicomachus' (60 - 120 CE) classification scheme for positive integers. : 양의 정수에 대한 Nicomachus의 (60-120 CE) 분류 체계를 기반으로 숫자가 완전, 풍부 또는 부족인지 확인합니다. The Greek mathematician Nicomachus devised a classification scheme for positive integers, identifying each as belonging uniquely to the categories..
🔥 문제 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? : 가장 빈번한 ..