2021
-
[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 -
Kaggle Dataset Download
November 10, 2021Quick shell script for batch-downloading Kaggle competition datasets using the Kaggle API for local server training.
1 min read ·ai-competition -
[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