-
[Programmers] Tuple
February 24, 2022Solution for the Programmers tuple problem using string parsing, regex, and length-based sorting.
1 min read ·algorithm -
[Programmers] Lotto Best and Worst Rank
January 31, 2022C++ solution for the Programmers lotto best/worst rank problem with notes on find and vector methods.
1 min read ·algorithm -
[Programmers] Get Report Results
January 30, 2022C++ solution for the Programmers report results problem using unordered_map, set, and stringstream.
1 min read ·algorithm -
[Programmers] Printer
January 20, 2022Solution for the Programmers printer queue problem using priority-based simulation.
1 min read ·algorithm -
[HackerRank] Roads and Libraries
November 19, 2021Solution for the HackerRank Roads and Libraries problem using DFS to minimize the cost of building roads and libraries across connected city groups.
1 min read ·algorithm -
[HackerRank] Sherlock and Cost
November 19, 2021Dynamic programming solution for the HackerRank Sherlock and Cost problem, maximizing the sum of absolute differences in a sequence.
1 min read ·algorithm -
[HackerRank] Climbing the Leaderboard
November 18, 2021Solving HackerRank's Climbing the Leaderboard problem efficiently using sorted traversal instead of repeated search.
1 min read ·algorithm -
[Programmers] String Compression
November 17, 2021Solution for the Programmers string compression problem using n-gram style chunking.
1 min read ·algorithm -
[Programmers] Farthest Node
November 12, 2021Solution for the Programmers farthest node problem using BFS on an undirected graph.
1 min read ·algorithm -
[Baekjoon] Z
November 11, 2021Solution for Baekjoon 1074 (Z) using recursive quadrant division and cumulative counting.
1 min read ·algorithm -
[Baekjoon] Picnic
November 10, 2021Solution for Baekjoon 2026 (Picnic) using DFS on a friendship graph with adjacency matrix and adjacency list.
1 min read ·algorithm -
[Baekjoon] Password Creation
November 8, 2021Solution for Baekjoon 1759 (Password Creation) using combinations with vowel and consonant constraints.
1 min read ·algorithm -
[Programmers] Filename Sort
November 2, 2021Solution for the Programmers filename sort problem using regex-based splitting and custom sort keys.
1 min read ·algorithm -
[Programmers] English Word Chain
October 29, 2021Solution for the Programmers word chain game problem using stack-based simulation and modular arithmetic.
1 min read ·algorithm -
[Baekjoon] Gear
October 26, 2021Solution for Baekjoon 14891 (Gear/Cogwheel) using recursive state checking and deque-based rotation.
1 min read ·algorithm -
[Programmers] Stepping Stones
October 22, 2021Solution for the Programmers stepping stones problem using binary search on minimum distance.
1 min read ·algorithm -
[Programmers] Lifeboat
October 22, 2021Solution for the Programmers lifeboat problem using a greedy two-pointer approach.
1 min read ·algorithm -
[Programmers] H-Index
October 22, 2021Solution for the Programmers H-Index problem using sorting and linear scan.
1 min read ·algorithm -
[Programmers] Disguise
October 21, 2021Solution to the Programmers 'Disguise' hash problem using combinatorics to count clothing outfit combinations.
1 min read ·algorithm -
[Programmers] Phone Book
October 21, 2021Solution for the Programmers phone book problem using sorting and prefix comparison.
1 min read ·algorithm -
[Programmers] Immigration
October 20, 2021Solution for the Programmers immigration problem using binary search on time cost.
1 min read ·algorithm -
[Baekjoon] 2048 (Easy)
October 13, 2021Solution for Baekjoon 12100 (2048 Easy) using brute-force simulation with block merging and four-directional movement.
2 min read ·algorithmpython -
[Programmers] Word Conversion
September 2, 2021Solution for the Programmers word conversion problem using BFS with single-character diff detection.
1 min read ·algorithmpython -
[Baekjoon] Messi Gimossi
September 2, 2021Solution for Baekjoon 17297 (Messi Gimossi) using Fibonacci-based string search with a binary search-like approach.
2 min read ·pythonalgorithm -
[Programmers] Network (Python)
August 15, 2021Solution for the Programmers network problem using DFS to count connected components.
1 min read ·algorithmpython -
[Programmers] Target Number (Python)
August 15, 2021Solution for the Programmers target number problem with DFS, BFS, and itertools.product approaches.
2 min read ·algorithmpython -
RNN
August 6, 2021Fundamentals of RNN including sequence data handling, latent autoregressive models, BPTT, and truncated backpropagation.
2 min read ·mlnlp+1 -
Proof of Gradient Descent
August 4, 2021Mathematical derivation of gradient descent for linear regression, from L2 norm cost functions to SGD.
3 min read ·mlalgorithm -
Bayesian Statistics
January 1, 2021Fundamentals of Bayesian statistics covering Bayes' theorem, conditional probability, posterior updating, and causality interpretation.
3 min read ·mlalgorithm -
CNN
January 1, 2021CNN fundamentals: convolution operations, kernel mechanics, multi-dimensional convolutions, and backpropagation.
2 min read ·computer-visionml+1