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! 💙