Posts by Category

algorithm-leetcode

  1. Unique Length-3 Palindromic Subsequences

less than 1 minute read

주어진 string 내에 길이가 3인 palindrome이 몇 개나 존재하는지를 찾는 문제이다. 길이가 3으로 고정 되어 있다.

76 Minimum Window Substring

less than 1 minute read

my solution ```python def minWindow(self, s: str, t: str) -> str: req = collections.Counter(t) wnd = collections.defaultdict(int) ...

406 Queue Reconstruction by Height

less than 1 minute read

problem definition people[i] = 11(hi, ki) where hi is height of ith person ki is number of people in front ith person

617 Merge Two Binary Trees.md

less than 1 minute read

my solution ```python class Solution: def mergeTrees(self, t1: TreeNode, t2: TreeNode) -> TreeNode: def dfs(node1, node2): if not node1 o...

538 Convert BST to Greater Tree

less than 1 minute read

my solution ```python class Solution: def bstToGst(self, root: TreeNode) -> TreeNode: nodes = collections.defaultdict(None) tot = 0 ...

226 Invert Binary Tree

less than 1 minute read

my solution ```python def invertTree(self, root: TreeNode) -> TreeNode: def dfs(node): if not node: return None ...

783 Minimum Distance Between BST Nodes

less than 1 minute read

my solution ```python class Solution: def minDiffInBST(self, root: TreeNode) -> int: def dfs(node): if not node.left and not node....

743 Network Delay Time

less than 1 minute read

my solution def networkDelayTime(self, times: List[List[int]], N: int, K: int) -> int: g = collections.defaultdict(dict) for u, v, w i...

33 Search in Rotated Sorted Array

less than 1 minute read

my solution class Solution: def search(self, nums: [int], target: int) -> int: if not nums: return -1 def find_pi...

179 Largest Number

less than 1 minute read

my solution ```python class Solution: def largestNumber(self, nums: [int]) -> str: if not any(nums): return “0” def compare(x...

243 Shortest Word Distance

less than 1 minute read

my solution ```python class Solution: “”” @param words: a list of words @param word1: a string @param word2: a string @return: the shorte...

Back to Top ↑

jekyll

개인정보 처리방침

2 minute read

< RS >(‘없음’이하 ‘없음’)은(는) 「개인정보 보호법」 제30조에 따라 정보주체의 개인정보를 보호하고 이와 관련한 고충을 신속하고 원활하게 처리할 수 있도록 하기 위하여 다음과 같이 개인정보 처리방침을 수립·공개합니다.

Privacy Policy

4 minute read

< RS >(‘없음’이하 ‘없음’)은(는) 「개인정보 보호법」 제30조에 따라 정보주체의 개인정보를 보호하고 이와 관련한 고충을 신속하고 원활하게 처리할 수 있도록 하기 위하여 다음과 같이 개인정보 처리방침을 수립·공개합니다.

Privacy Policy

4 minute read

< RS >(‘없음’이하 ‘없음’)은(는) 「개인정보 보호법」 제30조에 따라 정보주체의 개인정보를 보호하고 이와 관련한 고충을 신속하고 원활하게 처리할 수 있도록 하기 위하여 다음과 같이 개인정보 처리방침을 수립·공개합니다.

Back to Top ↑

update

개인정보 처리방침

2 minute read

< RS >(‘없음’이하 ‘없음’)은(는) 「개인정보 보호법」 제30조에 따라 정보주체의 개인정보를 보호하고 이와 관련한 고충을 신속하고 원활하게 처리할 수 있도록 하기 위하여 다음과 같이 개인정보 처리방침을 수립·공개합니다.

Privacy Policy

4 minute read

< RS >(‘없음’이하 ‘없음’)은(는) 「개인정보 보호법」 제30조에 따라 정보주체의 개인정보를 보호하고 이와 관련한 고충을 신속하고 원활하게 처리할 수 있도록 하기 위하여 다음과 같이 개인정보 처리방침을 수립·공개합니다.

Privacy Policy

4 minute read

< RS >(‘없음’이하 ‘없음’)은(는) 「개인정보 보호법」 제30조에 따라 정보주체의 개인정보를 보호하고 이와 관련한 고충을 신속하고 원활하게 처리할 수 있도록 하기 위하여 다음과 같이 개인정보 처리방침을 수립·공개합니다.

Back to Top ↑

web

개인정보 처리방침

2 minute read

< RS >(‘없음’이하 ‘없음’)은(는) 「개인정보 보호법」 제30조에 따라 정보주체의 개인정보를 보호하고 이와 관련한 고충을 신속하고 원활하게 처리할 수 있도록 하기 위하여 다음과 같이 개인정보 처리방침을 수립·공개합니다.

HTTP

4 minute read

HTTP (HyperText Transfer Protocol) request - response 방식의 web 통신 protocol HTML 문서를 주고 받는데 사용 TCP/UDP를 사용 port 80번 사용 특징 conn...

REST

2 minute read

SOAP Simple Object Access Protocol HTTP, HTTPS, SMTP등으로 XML 기반의 message를 전달하는 protocol RPC를 지원 XML-RPC와 WDDX에서 envolo...

Back to Top ↑

C++

개인정보 처리방침 (Privacy Policy)

6 minute read

개인정보 처리방침 (Privacy Policy)   < RS >(‘없음’이하 ‘없음’)은(는) 「개인정보 보호법」 제30조에 따라 정보주체의 개인정보를 보호하고 이와 관련한 고충을 신속하고 원활하게 처리할 수 있도록 하기 위하여 다음과 같이 개인정보 처리방침을 수립·...

Back to Top ↑

OS

Back to Top ↑

algorithm

Back to Top ↑

NLP

Installing pykospacing

less than 1 minute read

pykospacing.git 아래와 같이 type하여 install pip install git+https://github.com/haven-jeon/PyKoSpacing.git 이때, tensorflow version error 발생 시, tensorflow를 upgrade...

Back to Top ↑