Palindrome Number
LeetCode 9. Palindrome Number 원문 Given an integer x, return true if x is a palindrome, and false otherwise. 풀이 x가 음수이면 false를 반환한다. 그렇지 않은 경우… Python deque를 활용했다. 우선 숫자를 자리수 별로 분해해 덱에 넣은 후, 덱의 길...
LeetCode 9. Palindrome Number 원문 Given an integer x, return true if x is a palindrome, and false otherwise. 풀이 x가 음수이면 false를 반환한다. 그렇지 않은 경우… Python deque를 활용했다. 우선 숫자를 자리수 별로 분해해 덱에 넣은 후, 덱의 길...
LeetCode 28. Find the Index of the First Occurrence in a String 원문 Given two strings needle and haystack, return the index of the first occurrence of needle in haystack, or -1 if needle is not par...
LeetCode 22. Generate Parentheses 원문 Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses. 풀이 백트래킹. 여는 괄호와 닫는 괄호의 수를 확인하며 생성된 문자열의 길이가 2n이 될 때마다 ...
LeetCode 15: 3Sum 원문 Given an integer array nums, return all the triplets [nums[i], nums[j], nums[k]] such that i != j, i != k, and j != k, and nums[i] + nums[j] + nums[k] == 0. Notice that the s...
LeetCode 14. Longest Common Prefix 원문 Write a function to find the longest common prefix string amongst an array of strings. If there is no common prefix, return an empty string “”. 풀이 주어진 문자열 중...
LeetCode 12. Integer to Roman 원문 Roman numerals are represented by seven different symbols: I, V, X, L, C, D and M. Symbol Value I ...
LeetCode 13. Roman to Integer 원문 Roman numerals are represented by seven different symbols: I, V, X, L, C, D and M. Symbol Value I ...
LeetCode 101. Symmetric Tree 원문 Given the root of a binary tree, check whether it is a mirror of itself (i.e., symmetric around its center). 풀이 루트 노드부터 시작해 대칭인지 판별한다. 왼쪽 노드의 왼쪽 노드와 오른쪽 노드의 오른쪽 노드...
models.py 이름 설명 recipe 레시피 user 작성자 content 내용 created_at 작성시간 up...
JWT? JSON Web Token(JWT)는 RFC 7519에서 정의된 개방형 표준이다. 두 집단 사이의 클레임을 안전하게 표현한다. 클레임은 모든 비즈니스 프로세스와 연관될 수 있지만 보통 아이덴티티와 그 소속을 나타내는데 사용된다. JWT 내의 클레임은 JSON 객체로 인코딩되고, 보통 MAC을 이용해 디지털 서명한다. (생략) Simple ...