leetcode
leetcode copied to clipboard
Leetcode solutions
Bug Report for https://neetcode.io/problems/handwritten-digit-classifier There seems to be an inconsistency between the random seed used for the expected output and the seed setup in the problem description. Even when setting...
Bug Report for https://neetcode.io/problems/anagram-groups Please describe the bug below and include any steps to reproduce the bug or screenshots if possible.
Bug Report for https://neetcode.io/problems/duplicate-integer Please describe the bug below and include any steps to reproduce the bug or screenshots if possible.
The following C# solution to the [Valid Parentheses](https://neetcode.io/problems/validate-parentheses) question causes a compilation error on the web editor, but it compiles fine on Rider. ```csharp using System.Collections.Generic; public class Solution {...
Bug Report for https://neetcode.io/problems/python-docstrings Please describe the bug below and include any steps to reproduce the bug or screenshots if possible. Code matches what is in solution but I am...
Bug Report for https://neetcode.io/problems/longest-common-prefix ``` class Solution { public: string longestCommonPrefix(vector& strs) { string last = strs[0]; int checkSize = last.size(); for(const auto& str : strs) for(int i = 0;...
First of all, I love this service and I think my money was well spent here! š Iād just like to propose a small feature. Maybe someone else has already...
Bug Report for https://neetcode.io/problems/sql-aggregation-execution-order Please describe the bug below and include any steps to reproduce the bug or screenshots if possible. The instructions mention that the execution order has the...
Bug Report for https://neetcode.io/problems/dynamicArray Please describe the bug below and include any steps to reproduce the bug or screenshots if possible. Passes first two test cases, then returns an error...