-
Notifications
You must be signed in to change notification settings - Fork 0
Home
nvas222 edited this page Oct 8, 2025
·
2 revisions
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.
- Learning Tutorials: Step-by-step guides to solving LeetCode problems.
- Contribution Guidelines: How to contribute to this repository.
- Create Your Own Repository: Instructions for making an independent repository from this version.
- 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
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.
- Fork the repository by clicking the "Fork" button at the top-right corner of this page.
- 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
- Start solving problems and tracking your progress in your own repository.