Welcome to the DSA Problems Repository π
This repo is specially created for Hacktoberfest contributors who want to solve and contribute Data Structures & Algorithms problems in multiple programming languages.
- Star β this repository.
- Fork π΄ the repository.
- Create a new branch:
feature-<your-name>. - Add your solution in the appropriate folder (
Arrays,Strings,LinkedList, etc.).- Example:
Problems/Arrays/your_solution.cpp
- Example:
- Commit your changes and push.
- Open a Pull Request π.
- Only clean, readable, and well-documented code will be accepted.
- You can contribute in any programming language (C++, Java, Python, etc.).
- Each PR should solve one problem at a time.
- Donβt copy-paste solutions β write your own.
Problem: Reverse a String
Language: Python
def reverse_string(s: str) -> str:
return s[::-1]
print(reverse_string("Hello"))
- Make 4 valid pull requests to earn Hacktoberfest swag π.
- Check status here: https://hacktoberfest.com/
A huge thanks to all amazing contributors! π