โPanlindrome Linked Listโ in LeetCode (Easy) ๐ Problem https://leetcode.com/problems/palindrome-linked-list/ ๐ Answer /** * Definition for singly-linked list. * public class ListNode { * ...
[Data Sturcture] Tree Traversal (preorder, inorder, postorder)
Tree Traversal preorder traversal A -> B -> D -> H -> I -> E -> C -> F -> G inorder traversal H -> D -> I -> B -> E -> A ...
[Development] API vs Endpoint
API vs Endpoint API (An application programming interface) a set of protocol and tools that allow two applications to communicate ๋ ์์คํ (์ดํ๋ฆฌ์ผ์ด์ )์ด ์ํธ์์ฉ(์ํต) ํ ์ ์๊ฒ ํ๋ ํ๋กํ ์ฝ์ ์ด ์งํฉ ...
[Development] Exception In Java
Exception in Java Checked Exception vs Unchecked Exception ย Checked Exception Unchecked Exception When checked checked at compile time....
[Development] Elasticsearch
Architecture Elasticsearch Flow Small-sized Solution ELK Stack Elasticsearch / Lucene Lucene Elasticsearch is an open-source search engine built on top of Apache Luc...