Product of Array Except Self
LeetCode 238. Product of Array Except Self 원문 Given an integer array nums, return an array answer such that answer[i] is equal to the product of all the elements of nums except nums[i]. The produ...
LeetCode 238. Product of Array Except Self 원문 Given an integer array nums, return an array answer such that answer[i] is equal to the product of all the elements of nums except nums[i]. The produ...
CustomPermission settings.py가 속한 폴더에 permissions.py를 생성한다. 레시피 뿐만 아니라 이후에 추가할 레시피 리뷰, 게시판 글/댓글 또한 POST일 때에는 인증된 회원만, 수정/삭제는 작성자 또는 관리자만 가능하게 구현할 것이므로 다음과 같이 작성했다. DRF의 권한 문서를 참조했다. from rest_frame...
models.py 이름 설명 Ingredient 재료 Recipe 레시피 RecipeStep 레시피 단계 RecipeIngredient 레시피에 ...
LeetCode 17. Letter Combinations of a Phone Number 원문 Given a string containing digits from 2-9 inclusive, return all possible letter combinations that the number could represent. Return the answe...
Serializers 시리얼라이저의 유용함을 확장하는 것에 관해 다루고자 한다. 그런데 이것은 쉬운 문제가 아니며, 심도 깊은 설계 작업을 요구한다. - Russell Keith-Magee, Django users group 시리얼라이저는 queryset과 모델 인스턴스와 같은 복잡한 데이터를 JSON이나 XML 또는 다른 컨텐츠 타입으로 쉽게 ...
LeetCode 45. Jump Game II 원문 You are given a 0-indexed array of integers nums of length n. You are initially positioned at nums[0]. Each element nums[i] represents the maximum length of a forward...
LeetCode 172. Factorial Trailing Zeroes 원문 Given an integer n, return the number of trailing zeroes in n!. Note that n! = n * (n - 1) * (n - 2) * ... * 3 * 2 * 1. 풀이 0으로 끝나려면 10의 배수여야 한다. n이 5보...
models.py 우선 BaseUserManager를 상속받는 UserManager를 작성한다. django.contrib.auth.models의 UserManager처럼 create_user, create_superuser 메서드도 작성한다. Django 공식문서를 참고하면 좋다. class UserManager(BaseUserManager): ...
LeetCode 228. Summary Ranges 원문 You are given a sorted unique integer array nums. A range [a,b] is the set of all integers from a to b (inclusive). Return the smallest sorted list of ranges that...
레시피 수정 모델 이름 설명 Ingredient 재료 Recipe 레시피 RecipeStep 레시피 과정(단계) RecipeIngredient ...