Word Ladder
LeetCode 127. Word Ladder 원문 A transformation sequence from word beginWord to word endWord using a dictionary wordList is a sequence of words beginWord -> s1 -> s2 -> ... -> sk such th...
LeetCode 127. Word Ladder 원문 A transformation sequence from word beginWord to word endWord using a dictionary wordList is a sequence of words beginWord -> s1 -> s2 -> ... -> sk such th...
LeetCode 909. Snakes and Ladders 원문 You are given an n x n integer matrix board where the cells are labeled from 1 to n2 in a Boustrophedon style starting from the bottom left of the board (i.e. b...
Renderers TemplateResponse 인스턴스는 클라이언트에게 반환되기 전에 렌더링되어야 한다. 렌더링 프로세스는 템플릿과 컨텍스트의 중간 표현을 가져와 클라이언트에게 제공될 최종 바이트 스트림으로 변환한다. - Django documentation REST framework는 다양한 미디어 타입을 가진 응답을 반환할 수 있게 해주는 여...
LeetCode 133. Clone Graph 원문 Given a reference of a node in a connected undirected graph. Return a deep copy (clone) of the graph. Each node in the graph contains a value (int) and a list(List[N...
모델 이름 설명 Ingredient 재료 Recipe 레시피 RecipeStep 레시피 과정(단계) RecipeIngredient 레시피에 들어가...
부트캠프 최종 프로젝트였던 ㅇㅇ식탁을 DRF로 다시 작성하는 과정을 담는다. 원본 1. 레시피 생성 2. 레시피 수정, 삭제 리메이크 1. 회원가입, 로그인, 로그아웃 2. 레시피 등록, 수정, 삭제 3. Permission 4. MySQL 연결하기 5. 레시피 등록/수정할 때 새로운 재료 등록 6. JWT 7...
LeetCode 295. Find Median from Data Stream 원문 The median is the middle value in an ordered integer list. If the size of the list is even, there is no middle value, and the median is the mean of th...
LeetCode 212. Word Search II 원문 Given an m x n board of characters and a list of strings words, return all words on the board. Each word must be constructed from letters of sequentially adjacent ...
LeetCode 373. Find K Pairs with Smallest Sums 원문 You are given two integer arrays nums1 and nums2 sorted in non-decreasing order and an integer k. Define a pair (u, v) which consists of one eleme...
Parsers 웹 서비스와 상호작용 하는 기기는 데이터를 송신할 때 인코딩된 폼보다 좀 더 구조화된 포맷을 사용하는 경향이 있는데, 이는 단순한 폼보다 더 복잡한 데이터를 송신하기 때문이다. - Malcom Tredinnick, Django developers group REST framework는 다양한 미디어 타입을 가지는 요청을 허용하게 해주는...