-
you can add any missing Data-structures, Algorithms, or Programs for hacktoberfest 2020.
please read README.md first
-
## Implement data structures and algorithms in any preferred languages.
### **Steps to contribute -**
1. Open a new issue stating the algorithm/datastructure you want to implement.
2. Create a …
-
For compatibility reasons, we should accept all of the `kind` values that Pandas does in `DataFrame.sort_values`, but not necessarily use them. Right now, doing
```
import cudf
a = [0,1,2]
b = [-3…
-
Hi,
I'm trying to install and use seq and I'm facing a problem that I could not solve.
I'm trying to install with the default command:
/bin/bash -c "$(curl -fsSL https://seq-lang.org/install.sh)"…
-
It may be useful to have the option to stable sort arrays.
I'm thinking about adding it as a flag in `Array#sort`, defaulting to false, signature looks like this:
```
def sort(stable = false) : A…
-
Hey everyone! I just arrived here at this repo and would love to contribute a bit :)
Looking at the code organisation and the test setup, it's rather confusing for newcomers right now. Should we di…
-
At the very least there needs to be some quick algorithm for sorting integers and reals. But I think we can implement several algorithms and the user can choose.
This will also be needed to impleme…
-
Probably the source of the PyGMT [test failure](https://github.com/GenericMappingTools/pygmt/pull/1322) on Win
```
julia> gmtinfo(rand(5,3), i="0-2,2", C=true)
Vector{GMT.GMTdataset} with 1 segmen…
-
This issue changes how an IndexSearcher searches over multiple segments. The current method of searching multiple segments is to use a MultiSegmentReader and treat all of the segments as one. This cau…
-
Ideally, stable with worst-case *O(n log n)* performance and *O(1)* memory. The memory requirement is flexible, since no deep copies will be made.