leetcode icon indicating copy to clipboard operation
leetcode copied to clipboard

Leetcode solutions

Results 602 leetcode issues
Sort by recently updated
recently updated
newest added

Bug Report for https://neetcode.io/problems/python-type-hints Please describe the bug below and include any steps to reproduce the bug or screenshots if possible. No matter what I write it shows that it...

Added C++ memoization solution for LeetCode 123. Best Time to Buy and Sell Stock III. Uses top-down DP with clear variable names and comments for readability.

Bug Report for https://neetcode.io/problems/decode-ways First - HUGE fan of this channel :) Ok so the bug is pretty simple that I've seen on most problems but I don't pay attention...

Bug Report for https://neetcode.io/problems/crawler-log-folder My solution was: ```python class Solution: def minOperations(self, logs: List[str]) -> int: def distance(logs=[], dist=0): if len(logs) == 0: return dist pattern_1 = r'[a-z](\d+)/' match_1 =...

**Bug Report for [https://neetcode.io/problems/dynamicArray](https://neetcode.io/problems/dynamicArray)** Hello, I’m currently having issues with this problem. My solution seems correct: it passes all the local tests I run, but when I submit, it shows...

Bug Report for https://neetcode.io/problems/python-hide-hero-details Please describe the bug below and include any steps to reproduce the bug or screenshots if possible. Instructions say not to use @property or @name.setter decorators...

Bug Report for https://neetcode.io/problems/python-public-attribute-and-method Please describe the bug below and include any steps to reproduce the bug or screenshots if possible. Challenge instructions do not match expected output. Instructions state:...

Bug Report for https://neetcode.io/problems/design-hashmap Please describe the bug below and include any steps to reproduce the bug or screenshots if possible.

Bug Report for https://neetcode.io/problems/minimum-stack Problem says `pop, top and getMin will always be called on non-empty stacks.`. However, when submitting, it requires empty stack consideration for some methods. Example: ```...

[//]: # 'Pull Request Template' [//]: # 'Replace the placeholder values in the template below' - **File(s) Modified**: _0705-design-hashset.go_ - **Language(s) Used**: _Go_ - **Submission URL**: _https://leetcode.com/problems/design-hashset/submissions/1782841142/_ [//]: # 'Getting...