This repository is a collection of open-source implementation of a variety of questions from different platforms implemented in any language and licensed under MIT License. These algorithms span a variety of levels, The implementations and the associated documentation are meant to provide a learning resource for educators and students. Hence, one may find more than one implementation for the same objective but using a different algorithm strategies and optimizations.
- https://leetcode.com/problems/middle-of-the-linked-list/
- https://leetcode.com/problems/two-sum/
- https://leetcode.com/problems/valid-parentheses/
- https://leetcode.com/problems/search-insert-position/
- https://leetcode.com/problems/longest-palindromic-substring/
- https://leetcode.com/problems/rotate-array/
- https://leetcode.com/problems/search-in-rotated-sorted-array/
There are Folders for each level, and the level folder has Question folders. Add your solution in that folder with the filename as . Please ensure that your code is readable and add comments to explain logic
If a user Test123 wants to add a solution to two sum in python, they would create a file in easy/two-sum as Test123.py and add their solution.