Home
YUHA๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ’ป
Cancel

[Easy] Panlindrome Linked List

โ€˜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...