Kth Largest Element in an Array
LeetCode 215. Kth Largest Element in an Array 원문 Given an integer array nums and an integer k, return the kth largest element in the array. Note that it is the kth largest element in the sorted o...
LeetCode 215. Kth Largest Element in an Array 원문 Given an integer array nums and an integer k, return the kth largest element in the array. Note that it is the kth largest element in the sorted o...
LeetCode 211. Design Add and Search Words Data Structure 원문 Design a data structure that supports adding new words and finding if a string matches any previously added string. Implement the WordD...
Routers 리소스 라우팅을 사용하면 주어진 resourceful controller를 위한 모든 공통 경로를 빠르게 선언할 수 있다. 인덱스에 대해 분리된 경로를 선언하는 대신...영리한 경로는 한 줄의 코드로 그 모두를 선언한다. - Ruby on Rails 문서 Rails 같은 웹 프레임워크에서는 어플리케이션이 들어오는 요청을 논리에 매핑하...
LeetCode 208. Implement Trie (Prefix Tree) 원문 A trie (pronounced as “try”) or prefix tree is a tree data structure used to efficiently store and retrieve keys in a dataset of strings. There are va...
ViewSets 라우팅이 요청에 어느 컨트롤러를 사용할지 정하면 컨트롤러는 요청을 이해하고 적절한 출력을 생성해야 한다. - Ruby on Rails 문서 Django REST framework는 ViewSet이라는 하나의 클래스에서 관련있는 뷰의 집합을 위해 로직을 조합할 수 있게 해준다. 다른 프레임워크에서도 ‘Resources’ 또는 ‘Con...
Generic views Django의 제네릭 뷰는...일반적인 사용 패턴을 쉽고 빠르게 구현하기 위한 방법으로 개발되었다. ...뷰 개발에서 찾을 수 있는 특정 공통 이디엄과 패턴을 가지며 이를 추상화해 되풀이 할 필요 없이 일반적인 뷰를 빠르게 작성할 수 있게 한다. - Django Documentation 클래스 기반 뷰의 대표적인 이점 중...
LeetCode 637. Average of Levels in Binary Tree 원문 Given the root of a binary tree, return the average value of the nodes on each level in the form of an array. Answers within 10-5 of the actual an...
LeetCode 199. Binary Tree Right Side View 원문 Given the root of a binary tree, imagine yourself standing on the right side of it, return the values of the nodes you can see ordered from top to bott...
Class-based Views Django의 클래스 기반 뷰는 옛 스타일 뷰로부터의 환영할 만한 출발이다. - Reinout van Rees REST framework는 Django의 View 클래스의 서브클래스인 APIView 클래스를 제공한다. APIView 클래스는 정규 View 클래스와 다음과 같은 부분에서 다르다: 핸들러 메서드...
LeetCode 230. Kth Smallest Element in a BST 원문 Given the root of a binary search tree, and an integer k, return the kth smallest value (1-indexed) of all the values of the nodes in the tree. 중위 순...