►Solutions for random leetcode problems
Table of Contents
► Solutions for random leetcode problems written by me
└── leetcode-solutions/
├── 1-two-sum
│ ├── README.md
│ └── two-sum.cpp
├── 100-same-tree
│ ├── README.md
│ └── same-tree.cpp
├── 1013-fibonacci-number
│ ├── README.md
│ └── fibonacci-number.cpp
├── 1137-height-checker
│ ├── README.md
│ └── height-checker.cpp
├── 1217-relative-sort-array
│ ├── README.md
│ └── relative-sort-array.cpp
├── 1878-check-if-array-is-sorted-and-rotated
│ ├── README.md
│ └── check-if-array-is-sorted-and-rotated.cpp
├── 1938-minimum-operations-to-make-the-array-increasing
│ ├── README.md
│ └── minimum-operations-to-make-the-array-increasing.cpp
├── 1970-sorting-the-sentence
│ ├── README.md
│ └── sorting-the-sentence.cpp
├── 198-house-robber
│ ├── README.md
│ └── house-robber.cpp
├── 2148-minimum-number-of-moves-to-seat-everyone
│ ├── README.md
│ └── minimum-number-of-moves-to-seat-everyone.cpp
├── 330-patching-array
│ ├── README.md
│ └── patching-array.cpp
├── 3396-valid-word
│ ├── README.md
│ └── valid-word.cpp
├── 383-ransom-note
│ ├── README.md
│ └── ransom-note.cpp
├── 502-ipo
│ ├── README.md
│ └── ipo.cpp
├── 633-sum-of-square-numbers
│ ├── README.md
│ └── sum-of-square-numbers.cpp
├── 75-sort-colors
│ ├── README.md
│ └── sort-colors.cpp
├── 77-combinations
│ ├── README.md
│ └── combinations.cpp
├── 932-monotonic-array
│ ├── README.md
│ └── monotonic-array.cpp
└── 982-minimum-increment-to-make-array-unique
├── README.md
└── minimum-increment-to-make-array-unique.cpp
1878-check-if-array-is-sorted-and-rotated
1137-height-checker
198-house-robber
982-minimum-increment-to-make-array-unique
1-two-sum
1970-sorting-the-sentence
1013-fibonacci-number
3396-valid-word
1938-minimum-operations-to-make-the-array-increasing
77-combinations
383-ransom-note
2148-minimum-number-of-moves-to-seat-everyone
932-monotonic-array
1217-relative-sort-array
75-sort-colors
502-ipo
| File |
Summary |
| ipo.cpp |
► INSERT-TEXT-HERE |
100-same-tree
633-sum-of-square-numbers
330-patching-array
Contributions are welcome! Here are several ways you can contribute:
Contributing Guidelines
- Fork the Repository: Start by forking the project repository to your github account.
- Clone Locally: Clone the forked repository to your local machine using a git client.
git clone https://github.com/thirt33n/leetcode-solutions
- Create a New Branch: Always work on a new branch, giving it a descriptive name.
git checkout -b new-feature-x
- Make Your Changes: Develop and test your changes locally.
- Commit Your Changes: Commit with a clear message describing your updates.
git commit -m 'Implemented new feature x.'
- Push to github: Push the changes to your forked repository.
git push origin new-feature-x
- Submit a Pull Request: Create a PR against the original project repository. Clearly describe the changes and their motivations.
- Review: Once your PR is reviewed and approved, it will be merged into the main branch. Congratulations on your contribution!
Contributor Graph
- LeetSync for automatically pushing new code into this repo.
- ReadmeAI auto generating this README file.
Return