-
### LeetCode Username
FoxtrotOnce
### Problem Number, Title, and Link
https://leetcode.com/problems/cut-off-trees-for-golf-event/description/
### Bug Category
Problem constraints
### Bug Descrip…
-
A program to retrieve the maximum/minimum element of each k sized continuous window of an array in O(n) time complexity. A good example where deque is useful.
I am a GSSOC'21 participant, and I wou…
-
Hi, I found this project recently and was looking to translate a C++ discrete event simulator into memory-safe rust via this library, and I eventually ran into some performance issues when adding func…
-
I was curious if the following approach has been tested already. The idea is that we can run `windll.kernel32.SetConsoleCtrlHandler(0,0)` to enable CTRL_C_EVENT for all processes in a process group. T…
-
### LeetCode Username
user9140jy
### Problem Number, Title, and Link
641. Design Circular Deque https://leetcode.com/problems/design-circular-deque/
### Bug Category
Missing test case *(Incorrect…
-
I'm just following the instructions on How to build on MacOS.
installed all via brew, got latest XCode and macOs Catalina.
The build failes with these errors.
```
/Applications/Xcode.app/Contents/…
-
This simple program does not run in parallel:
``` haskell
import Control.Monad.Par
fib :: Integer -> Integer
fib 0 = 1
fib 1 = 1
fib n = fib (n-1) + fib (n-2)
main =
args
-
**Background**
I've started using 1-buffered channels pretty heavily as “selectable mutexes” (see also https://github.com/golang/go/issues/16620). Unbuffered channels are also quite common in Go AP…
-
I am working with "bfs" from the suggested test programs. I managed to instrument it when the target register is the destination register (dstreg). However, I get the following error message (in the i…
-
@stjepang [said](https://github.com/crossbeam-rs/crossbeam/pull/359#issuecomment-485958500):
> Just so we don't forget, in all the other places where we have atomic timestamps, we should use `Atomi…