An open API service indexing awesome lists of open source software.

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).

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)