-
Adding Leetcode solutions to Contribute(Please label it to Hacktoberfest)
-
I'd like to use the PriorityQueue but in my case the values I need to use for ordering are dates and I need the oldest one first. This means I can't use PriorityQueue because the order would be revers…
-
I have been using `tree_sitter_languages` to parse markdown. Some of my md files are causing a hard crash of the `parser.parse()` call:
```
Assertion failed: (i == length), function deserialize, f…
-
Please describe the problem.
Google's Bazel uses gcc as the system compiler. I've been using https://github.com/hedronvision/bazel-compile-commands-extractor to get a `compile_commands.json`.
C…
matta updated
10 months ago
-
> Created by **@mschwerhoff** on 2019-07-28 12:29
> Last updated on 2019-07-28 12:30
The Silver test suite currently has the following directory structures:
```plaintext
all
assume
basic
…
-
### The problem in depth
Header filters and autosize don't work well together.
When a column as a short header and short content then header filter is unusable: autosize should consider the presence…
-
-
- **Public Profile** (Will need to finish user profile to continue this section) wtt_front #300
- [x] Image + Changing the image
- Before uploading, users can preview what the image will look like.
…
-
Hi,
Looking at the repo, it looks like Actiontec had accidently released as GPL some proprietary code from Silicon Labs. If you look under rtl819x/linux-2.6.30/rtk_voip-sdk/voip_drivers/proslic_api…
-
The current naive implementation is $O(n^2)$, whereas [Bentley–Ottmann](https://en.wikipedia.org/wiki/Bentley%E2%80%93Ottmann_algorithm) is $O((n+k)\log n)$. Plans to implement?