Welcome to the Contribution Repository by CodeConquerors! 🚀 This repository is designed to help beginners learn how to contribute to an open source project and understand Git and GitHub.
GitHub-Learning-Repo/
|
│── Python/
│ ├── easy_problem_1.py
│ ├── easy_problem_2.py
│ ├── easy_problem_3.py
│ ├── easy_problem_4.py
│ ├── easy_problem_5.py
│── C++/
│ ├── easy_problem_1.cpp
│ ├── easy_problem_2.cpp
│ ├── easy_problem_3.cpp
│ ├── easy_problem_4.cpp
│ ├── easy_problem_5.cpp
│── C/
│ ├── easy_problem_1.c
│ ├── easy_problem_2.c
│ ├── easy_problem_3.c
│ ├── easy_problem_4.c
│ ├── easy_problem_5.c
│── Java/
│ ├── easy_problem_1.java
│ ├── easy_problem_2.java
│ ├── easy_problem_3.java
│ ├── easy_problem_4.java
│ ├── easy_problem_5.java
│── README.md # Instructions, contributors list, and GitHub workflow
│── CONTRIBUTORS.md # Detailed contributor list
│── LICENSE
- Fork this repository.
- Clone your forked repo to your local machine.
- Navigate to the issue assigned to you.
- Make necessary changes in the respective file.
- Commit the changes with a meaningful message.
- Push the changes to your fork.
- Open a Pull Request (PR) and wait for review.
Here are some simple problems you can start with:
- Fix the syntax error in a given print statement.
- Convert a
forloop into list comprehension. - Implement a function to find the factorial of a number.
- Improve variable names for better readability.
- Write a function to check if a string is a palindrome.
- Fix missing semicolons in a given program.
- Convert a
whileloop into aforloop. - Optimize a function that finds the largest number in an array.
- Implement a function to swap two numbers without a third variable.
- Improve indentation and code formatting.
- Correct a missing return type in a function.
- Convert a
whileloop into aforloop. - Write a program to find the sum of digits of a number.
- Fix a logical error in a Fibonacci series generator.
- Improve comments and variable names in a given program.
- Fix an incorrect
System.out.println()statement. - Write a program to check if a number is prime.
- Convert a
whileloop to aforloop. - Optimize a function that reverses a string.
- Improve class and method documentation.
All contributors will be listed in CONTRIBUTORS.md. Make sure to add your name after your first PR is merged!
Happy Coding! 🚀