惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
DataBreaches.Net
IT之家
IT之家
The Cloudflare Blog
Apple Machine Learning Research
Apple Machine Learning Research
WordPress大学
WordPress大学
N
Netflix TechBlog - Medium
阮一峰的网络日志
阮一峰的网络日志
P
Proofpoint News Feed
L
LangChain Blog
博客园 - Franky
美团技术团队
J
Java Code Geeks
Microsoft Security Blog
Microsoft Security Blog
博客园 - 叶小钗
小众软件
小众软件
Y
Y Combinator Blog
B
Blog RSS Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
D
Docker
Hugging Face - Blog
Hugging Face - Blog
Jina AI
Jina AI
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
Vercel News
Vercel News

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Building a Boggle solver: DFS meets the trie, and why nai...
Dean Gilley · 2026-04-24 · via DEV Community

Building a Boggle solver: DFS meets the trie, and why naive recursion blows up

If you’ve ever spent a Sunday afternoon hunched over a 4x4 grid of plastic letter cubes, you know the frantic, high-stakes joy of Boggle. As developers, our instinct isn't just to play the game—it’s to automate it.

But building a Boggle solver is a classic trap. It looks like a simple graph traversal problem, but if you approach it with a naive mindset, you’ll quickly find your CPU spinning its wheels while your program chokes on the sheer volume of invalid paths.

The Naive Approach: The "Dictionary Lookup" Trap

The rules of Boggle are straightforward: you start at any cell, move to any of the 8 adjacent neighbors, and build a word without reusing a cell in the current path.

The naive approach is to perform a Depth-First Search (DFS) from every single cell on the board. At every step of the recursion, you check if your current string exists in a dictionary. If it does, you add it to your results. If it’s a prefix of a valid word, you keep going.

Here is the problem: if you use a standard Python set or a list for your dictionary, you have no way of knowing if a path is "dead" until you’ve already traversed it. You might spend thousands of cycles exploring a path like Q-Z-X-J... before realizing that no word in the English language starts with those letters.

You are essentially brute-forcing the entire state space of the board. With 16 cells and up to 8 neighbors each, the number of possible paths grows factorially. You aren't just searching for words; you are searching for every possible sequence of letters, which is a recipe for a timeout.

Enter the Trie: Pruning the Search Space

To solve this efficiently, we need to stop exploring paths that aren't going anywhere. We need a data structure that tells us, "Stop here, there are no words starting with this sequence."

Enter the Trie (or prefix tree). By inserting your entire dictionary into a trie, you gain the ability to validate prefixes in $O(L)$ time, where $L$ is the length of the word. More importantly, you can prune your DFS the moment your current path deviates from a valid branch in the trie.

If you are looking for a dictionary API you can query for validation, a2zwordfinder.com is a great reference for what valid words look like. Similarly, lettersintowords.com is another GWN word tool that uses similar prefix-trie ideas to handle anagrams and board games.

The Implementation

Instead of passing a string down the recursion stack, we pass a reference to the current node in our trie. If the trie node doesn't have a child corresponding to the next letter on the board, we stop immediately.

def solve_boggle(board, trie):
    rows, cols = 4, 4
    found_words = set()

    def dfs(r, c, node, path, visited):
        char = board[r][c]
        if char not in node:
            return

        next_node = node[char]
        if "_end" in next_node:
            found_words.add(path + char)

        visited.add((r, c))
        for dr in [-1, 0, 1]:
            for dc in [-1, 0, 1]:
                nr, nc = r + dr, c + dc
                if 0 <= nr < rows and 0 <= nc < cols and (nr, nc) not in visited:
                    dfs(nr, nc, next_node, path + char, visited)
        visited.remove((r, c))

    for r in range(rows):
        for c in range(cols):
            dfs(r, c, trie, "", set())
    return found_words

Enter fullscreen mode Exit fullscreen mode

By passing the next_node down the stack, we effectively "lockstep" our board traversal with our dictionary structure. If the trie doesn't have the letter, the recursion terminates instantly. This optimization typically results in a 100-1000x speedup compared to checking a flat list or set at every step.

Why this works

The trie acts as a filter. In the naive approach, you explore the entire tree of possibilities. With the trie, you only explore the branches that actually exist in the English language. You are no longer searching the board; you are searching the intersection of the board's geometry and the dictionary's structure.

What I’d add next

If you’re looking to take this project further, here are three features that would turn this script into a competitive tool:

  1. The "Qu" Tile: In real Boggle, the "Q" cube is actually "Qu." You’ll need to adjust your logic to treat "Qu" as a single unit, or your solver will never find words like "Queen" or "Quiet."
  2. Scoring Logic: Not all words are created equal. Implement a scoring function based on word length (e.g., 3-4 letters = 1 point, 5 letters = 2 points, etc.) and sort your output to prioritize the high-value finds.
  3. Memoization: If you find yourself running this on massive boards, consider memoizing the (r, c, trie_node) state. While the visited set makes this tricky, you can often cache results for sub-grids if you are processing multiple boards with the same dictionary.

Building a Boggle solver is a rite of passage for many developers. It teaches you that the difference between a slow, clunky script and a high-performance engine isn't just raw compute—it’s choosing the right data structure to prune your search space before the work even begins. Happy coding!