Skip to content
nvas222 edited this page Oct 8, 2025 · 2 revisions

Welcome to the LeetcodeGit Wiki

This wiki serves as a comprehensive guide to using and learning from the LeetcodeGit repository. Whether you're here to contribute, learn, or create your own repository, you'll find all the resources you need.

πŸ“š What You'll Find Here

🎯 Project Goals

  • Keep GitHub Active: Regular commits and contributions
  • Learn & Practice: Improve problem-solving and C# skills
  • Document Solutions: Clear explanations and complexity analysis
  • Quality Code: Clean, well-tested, and documented solutions

πŸš€ Getting Started

This repository is designed for learning and practicing LeetCode problems. You can either contribute to this repository or create your own version to track your progress.

Option 1: Contribute to This Repository

  1. Fork the repository by clicking the "Fork" button at the top-right corner of this page.
  2. Clone your forked repository:
    git clone https://github.com/<your-username>/LeetcodeGit.git
    cd LeetcodeGit
3. Make your changes and submit a pull request.

### Option 2: Create Your Own Repository

1. Download the repository as a ZIP file:
  - Click the green "Code" button and select "Download ZIP".
  - Extract the ZIP file to your desired location.
2. Initialize a new Git repository:
  ```bash
  git init
  git remote add origin https://github.com/<your-username>/YourRepoName.git
  git add .
  git commit -m "Initial commit"
  git push -u origin main
  1. Start solving problems and tracking your progress in your own repository.

Happy Coding! πŸš€

Clone this wiki locally