-
Python 3 Containers
October 27, 2021Overview of Python collections containers: UserDict, OrderedDict, and deque with practical usage notes.
1 min read ·python -
[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 -
Unicode, Tokenization
October 12, 2021Basics of Unicode handling in Python and subword tokenization methods including BPE (Byte-Pair Encoding).
1 min read ·nlppython -
Regex Practice
September 27, 2021Hands-on regex practice dissecting a password validation pattern with lookaheads and character classes.
1 min read ·nlppython -
pathlib
September 7, 2021Introduction to Python's pathlib module for cleaner, object-oriented file path manipulation as an alternative to os.path.
1 min read ·python -
[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 -
Confusing NumPy
September 1, 2021Common NumPy pitfalls: dtype=object issues with mixed-type lists and axis behavior in np.mean.
1 min read ·pytorchpython -
pandas
August 19, 2021Quick reference for pandas essentials: DataFrame, Series, read_csv, indexing with loc and iloc.
1 min read ·python -
PyTorch Template and Tips
August 17, 2021PyTorch project tips: template structure, getattr for dynamic config, and abstract methods.
1 min read ·pytorchpython -
Bar Plot
August 16, 2021Guide to bar plot visualization techniques in matplotlib, covering stacked, overlapped, and grouped bar charts with best practices.
2 min read ·data-vizpython -
[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 -
Matrix, Vector
August 3, 2021Linear algebra refresher covering vector norms, inner products, matrix multiplication, inverse matrices, and Moore-Penrose pseudo-inverse with NumPy examples.
1 min read ·python -
Python nested function
August 3, 2021Using Python decorators to compose nested functions for cleaner code structure.
1 min read ·python -
Python decorator, property
August 3, 2021How to use Python's @property decorator for clean getter/setter patterns and backward compatibility.
1 min read ·python -
numpy.matmul, numpy.dot
January 1, 2021Difference between numpy.matmul and numpy.dot for high-dimensional matrix multiplication.
1 min read ·python