-
> there's a typo https://chillerdragon.github.io/teeworlds-protocol/06/fundamentals.html alorithm
reported by @MilkeeyCat
-
It seems the stratum is not sending the new block info to the client for some of the Algos and so always running with the wrong block number in the jobs after first new block.
Blocknotify is working …
-
# P0
- [x] BCC
- [x] compress tree
- [x] extended euclidian
- [ ] factor big numbers
- [x] HLD
- [x] max flow
- [x] max matching
- [x] min cost max flow
- [x] NTT
- [ ] string hashing
- [x]…
-
An LRU (Least Recently Used) cache is widely used for its simplicity and effectiveness in managing limited resources. However, there are scenarios where other caching algorithms might perform better d…
-
I'm planning to re-run all benchmarks shortly. Going through the algos with some todos (checking boxes as I fix it)
Currently failing in CI:
* [X] diskann – something with clang
* [X] kgraph: s…
-
Looks interesting
-
Consult Dr. MVM for audio analysis resources, be it documentation or implementation. Something like [... Music Analysis](https://blog.paperspace.com/audio-analysis-processing-maching-learning/#onset-d…
-
All of `reduce`, `transform_reduce`, `exclusive_scan`, and `inclusive_scan`, `transform_exclusive_scan`, and `transform_inclusive_scan` only have a precondition on the type of `init` that it meets the…
-
💥 Crash Report
What were you trying to accomplish when the crash occurred?
> Please use this issue template to describe what you were doing when you encountered this crash. While we are able…
-
# 算法:数组基础知识 - 码界Musing
1. 数组简介1.1 数组定义 数组(Array):一种线性表数据结构。它使用一组连续的内存空间,来存储一组具有相同类型的数据。 简单来说,「数组」 是实现线性表的顺序结构存储的基础。 以整数数组为例,数组的存储方式如下图所示。 数组存储方式 true 如上图所示,假设数据元素的个数为 n,则数组中的每一个数据元素都有自己的下标索引,下标索引从 …