2021
-
[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 -
NLP Trends
October 29, 2021Survey of NLP trends including reinforcement learning for summarization and QA, and multimodal NLP+CV approaches like Show and Tell and GLAC Net.
1 min read ·nlp -
Kill All Matching Processes with grep
October 29, 2021One-liner to find and kill all matching processes using ps, grep, awk, and xargs.
1 min read ·dev-tools -
Python 3 Containers
October 27, 2021Overview of Python collections containers: UserDict, OrderedDict, and deque with practical usage notes.
1 min read ·python -
[Baekjoon] Gear
October 26, 2021Solution for Baekjoon 14891 (Gear/Cogwheel) using recursive state checking and deque-based rotation.
1 min read ·algorithm