Here are some solutions for LeetCode Problems in C.
Thank you for contributing to this project.
1. Fork the repository
Click the "Fork" button at the top right of this page to create a copy of the repository in your GitHub account.
2. Clone your fork
git clone https://github.com/Clesiaaa/LeetCodeProblemsC.git
cd LeetCodeProblemsC
3. Create your solution file
Go to the problems directory and create a new file named after the problem number with a .c extension.
problems/42.c
4. Add your solution
Write your solution inside the file.
5. Commit and push
git add problems/42.c
git commit -m "add : solution for problem 42"
git push origin main
6. Open a pull request
Go to your fork on GitHub and click "New pull request". Describe what problem you solved and submit.
- One file per problem
- The file name must be the problem number followed by
.c - Place the file inside the
problemsdirectory - One solution per pull request