Building ShieldMod: A Full-Stack Licensing Platform
An introduction to building a 565,528 line licensing platform using Python FastAPI, Next.js, and C++, covering architecture decisions and key technical implementations.
4 posts
An introduction to building a 565,528 line licensing platform using Python FastAPI, Next.js, and C++, covering architecture decisions and key technical implementations.
Two approaches to solving the Valid Palindrome problem using regular expressions and string methods with the two-pointer technique.
Solving the Remove Element problem with two approaches: a simple list comprehension and an efficient two-pointer technique with O(1) space complexity.
Exploring two solutions to the classic Two Sum problem: a naive nested loop approach and an optimized hashmap solution with O(N) time complexity.