Skip to content

Commit

Permalink
added documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
aktienautobahn committed Aug 11, 2024
1 parent 3f3ec55 commit 22cadb1
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 0 deletions.
22 changes: 22 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
MIT License

Copyright (c) [2024] [Aktienautobahn]

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

40 changes: 40 additions & 0 deletions Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# DSA (Data Structures and Algorithms) LeetCode Solutions using C++

Welcome to my repository where I showcase my journey in mastering Data Structures and Algorithms (DSA) using C++. This repository is a growing collection of solutions to common algorithmic challenges, categorized by difficulty.

## 🚀 Current Progress

### Easy Level

1. **Two Sum**
- **Problem Statement:** Given an array of integers `nums` and an integer `target`, return the indices of the two numbers such that they add up to `target`.
- **Solution:** Implemented an efficient solution using a hash map to achieve O(n) time complexity.

[View Solution](./Easy/TwoSum/TwoSum.cpp)

2. **Palindrome**
- **Problem Statement:** Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.
- **Solution:** Implemented a two-pointer technique to compare characters from both ends.

[View Solution](./Easy/Palindrome/palindrome.cpp)

## 🛠️ Tools & Technologies

- **Language:** C++
- **PDE:** tmux + Neovim
- **Version Control:** Git

## 📈 Future Plans

- **Expand to Medium and Hard Problems:** Continuing to tackle more complex problems.
- **Optimization:** Revisit solutions to optimize for space and time complexity.
- **Documentation:** Add more detailed explanations and comments within the code.

## 🤝 Contributing

Suggestions, optimizations, and contributions are welcome! Please feel free to open an issue or submit a pull request.

## 📄 License

This repository is licensed under the MIT License. See the [LICENSE](./LICENSE) file for more details.

0 comments on commit 22cadb1

Please sign in to comment.