This repository contains my solutions to various Leetcode problems implemented in multiple programming languages.
- TypeScript
- JavaScript
- C#
Solutions/
  {Problem_Name}/
    TS/
      solution.ts
      solution.test.ts
    JS/
      solution.js
      solution.test.js
    CS/
      Solution.cs
      SolutionTests.cs
Important: All commands must be run from the root directory (leetcode-solutions/)
npm testdotnet test --filter "FullyQualifiedName~Solutions.{FOLDER_NAME}.CS"- Node.js (for JavaScript/TypeScript)
- .NET 9.0 SDK (for C#)
- Clone the repository
- Navigate to the project root:
cd leetcode-solutions
- Install JavaScript/TypeScript dependencies:
npm install 
- Restore C# packages:
dotnet restore