https://github.com/allenjue/leetcode
Collection of LeetCode questions to ace the coding interview! - Created using [LeetHub](https://github.com/QasimWani/LeetHub).
https://github.com/allenjue/leetcode
Last synced: 2 months ago
JSON representation
Collection of LeetCode questions to ace the coding interview! - Created using [LeetHub](https://github.com/QasimWani/LeetHub).
- Host: GitHub
- URL: https://github.com/allenjue/leetcode
- Owner: AllenJue
- Created: 2021-11-11T06:19:44.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-11-24T18:45:37.000Z (over 3 years ago)
- Last Synced: 2025-01-21T11:44:25.803Z (4 months ago)
- Language: Java
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LeetCode
Collection of LeetCode questions to ace the coding interview! - Created using [LeetHub](https://github.com/QasimWani/LeetHub).This LeetCode folder is to document the work I've done in LeetCode. Since the LeetHub extension does not have the feature to sync previous solutions, I'm including a compilation of my past explanations to some solutions that I felt were informative.
# Format
The discussion posts are formatted in the order that I completed the problems, and each contain a problem overview, solution analysis, and finally a time complexity analysis. The code is written in Java, and I would appreciate any feedback on the accuracy and helpfulness of the discussions.
# Problem Solutions
[1302. Deepest Leaves Sum](https://leetcode.com/problems/deepest-leaves-sum/discuss/940977/java-bfs-simple-on-w-explanation)
[1493. Longest Subarray of 1's After Deleting One Element](https://leetcode.com/problems/longest-subarray-of-1s-after-deleting-one-element/discuss/941015/Java-Intuitive-Code-O(N)-w-Explanation)
[1328. Break a Palindrome](https://leetcode.com/problems/break-a-palindrome/discuss/939823/java-0-ms-intuitive-code-w-explanation)