Browsing Tag
algorithms
57 posts
My trading system has a 73.5% win rate and loses money. Here is the diagnostic that found it.
I spent a few days auditing a live FX system I built, over 16 years of history. The…
Creating a Sudoku Solver Using Backtracking in JavaScript
Sudoku is one of the world’s most popular logic puzzles. While solving it by hand is fun, building…
I Got Bored of LeetCode, so I Built a Coding RPG
https://dsa-life-simulator-frontend.vercel.app”I made a free tool to make DSA practice feel like an RPG — would like feedback from…
Big O Notation explained
Introduction Big O notation measures how fast your code runs as the number of inputs grows. It’s really…
TOP 25 ALGORITMOS | Knuth-Morris-Pratt (KMP) Array
Este algoritmo é um algoritmo de busca de strings que é usado para encontrar um padrão dentro de…
How I Designed a Camera Scoring System for VLM-Based Activity Recognition — and Why It Looks Different in the Real World
Part 2 of the “Training-Free Home Robot” series. Part 1 covered why fixed ceiling-mounted nodes ended up as…
Robotic Brain for Elder Care 3
Part 3: The Scoring Engine — How a Robot Selects the Perfect Viewpoint In the previous post, we…
I Implemented Every Sorting Algorithm in Python — And Python’s Built-in Sort Crushed Them All
Last month, I went down a rabbit hole: I implemented six classic sorting algorithms from scratch in pure…
Using Clustering to Group Songs by Tempo, Energy, and Vocals
Introduction With the rapid expansion of digital music libraries and streaming platforms, organizing and understanding large collections of…
Quick Sort in Javascript
Quick Sort is one of the most important and widely used sorting algorithms. It’s fast, elegant, and a…