일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 독립영화플랫폼
- MYSQL
- 장고 프로젝트
- 장고
- python
- MyPick31
- JavaScript
- 프로젝트
- 북마크앱
- til
- passport.js
- 타사인증
- Bookmark
- Algorithm
- ART_Cinema
- Django Blog
- 개발
- Node.js
- 예술영화추천
- 알고리즘
- Blog
- Django
- 장고 프로젝트 순서
- 파이썬 웹프로그래밍 장고
- Exercism
- mongodb
- 북마크만들기
- join()
- 장고 개발 순서
- 자바스크립트
- Today
- Total
목록분류 전체보기 (141)
Juni_Dev_log
🔥 문제 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,..
▶ Raindrops 📌 Problem Introduction Your task is to convert a number into a string that contains raindrop sounds corresponding to certain potential factors. A factor is a number that evenly divides into another number, leaving no remainder. The simplest way to test if a one number is a factor of another is to use the modulo operation. The rules of raindrops are that if a given number: has 3 as a ..
▶ Hamming 🧬 📌 (Problem) Introduction Calculate the Hamming Distance between two DNA strands. Your body is made up of cells that contain DNA. Those cells regularly wear out and need replacing, which they achieve by dividing into daughter cells. In fact, the average human body experiences about 10 quadrillion cell divisions in a lifetime! When cells divide, their DNA replicates too. Sometimes duri..
▶ ETL (Problem) Introduction We are going to do the Transform step of an Extract-Transform-Load. ETL Extract-Transform-Load (ETL) is a fancy way of saying, "We have some crufty, legacy data over in this system, and now we need it in this shiny new system over here, so we're going to migrate this." (Typically, this is followed by, "We're only going to need to run this once." That's then typically..