This repository is a collection of my gists (working ✅ code snippets passing all test cases on the LeetCode online judge) solutions in the absolutely fantastic language, C++.
Hence, the solutions won't directly execute on your local IDE or compiler, the main() would need to be written and the solution's function would need to be invoked with appropriate inputs/test cases to run in standalone.
- Sometimes, multiple solutions/approaches have been provided with relevant comments, these are being continuously updated as and when I find a more optimized solution. Be wary of copying two solutions separated by comments simultaneously to run/submit on InterviewBit's online judge. Both shall work individually.
- The solutions also succinctly encompasses years of C++ industry programming experience and care has been taken to optimize even at the slightest visible portions of the code.
- The code in this repo is completely original content and written by me. If you like what you see, don't forget to show your liking by ⭐ing this repo.
- Fork the repository 🍴
- Do the desired changes (add/delete/modify) ✏️
- Make a pull request
- If your solution's time complexity ⏰ is better than the solution already present or,
- If your solution's space complexity 💾 is better than the solution already present or,
- If your solution is of the same time and space complexity but is more concise 📃. In this case, comment out the original solution & make a pull request with your solution or,
- If your solution is of the same time and space complexity but is easier/more readable 📄 to understand or,
- If you use the same solution as present in the main branch and have gone the extra mile to add short comments 📝 explaining what's happening or what's the rationale at that particular code line, wherever necessary. 🙏