Personal algorithms and data structures study repository in Go. Covers LeetCode problem solutions, implementations from Sedgewick's Algorithms textbook, and topic-based explorations of core CS concepts.
{number}-{problem}/— LeetCode solutions, each withmain.go,main_test.go, andreadme.md000-Sedgewick/— Sedgewick textbook implementations, organized by chapter000-Backtracking/,000-Heap/,000-Queues/,000-Recursion/,000-Trees/— Topic-based study implementations0000-Speed-Drills/— Practice implementations of core data structureslib/— Shared utilities (binary tree, linked list, graph helpers)
# All tests
go test ./...
# Single problem
go test ./206-Reverse-Linked-List/
# With verbose output
go test -v ./206-Reverse-Linked-List/Copyright (c) 2026 Thomas Delnoij. All rights reserved. See LICENSE.