Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 753 Bytes

File metadata and controls

31 lines (21 loc) · 753 Bytes

CodeChallenges

A collection of 113+ algorithm and data structure solutions implemented in C# (.NET 10.0), with comprehensive unit tests and performance benchmarks.

Prerequisites

Getting Started

# Build
dotnet build

# Run all tests
dotnet test

# Run tests for a specific problem
dotnet test --filter "FullyQualifiedName~SudokuSolver"

# Run benchmarks
dotnet run --project CodeChallenges.Benchmarks

Project Structure

CodeChallenges.Solutions/       # Problem solutions organized by category
CodeChallenges.UnitTests/       # xUnit + FluentAssertions tests (mirrors Solutions structure)
CodeChallenges.Benchmarks/      # BenchmarkDotNet performance benchmarks