#
arrays
Here are 1,409 public repositories matching this topic...
The Universal Storage Engine
data-science
storage-engine
s3
sparse-data
scientific-computing
s3-storage
arrays
hdfs
data-analysis
dataframes
tiledb
dense-data
sparse-arrays
-
Updated
Jul 20, 2021 - C++
adithyaov
commented
Feb 8, 2021
unsafeOffset :: Int -> Array.Array a -> Array.Array a
and
unsafeCut :: Int -> Array.Array a -> Array.Array a
or,
unsafeSlice :: Int -> Int -> Array.Array a -> Array.Array a
@harendra-kumar Thoughts?
PandaPy has the speed of NumPy and the usability of Pandas 10x to 50x faster (by @firmai)
finance
data-science
machine-learning
numpy
pandas
data-structures
arrays
structured-data
algorithmic-trading
-
Updated
Jun 6, 2021 - Python
Open
dropRight operation
ivancorrales
commented
Jan 15, 2019
This operations will be used to drop elements in the steam on the right of the given element
var elements = []int{10,12,7,41,5,6}
res:=koazee.StreamOf(elements).DropRight(12).Out().Val()
fmt.Println(res)
// [10,12]
python
search
c-plus-plus
algorithms
graphs
strings
cracking-the-coding-interview
recursion
sorting-algorithms
arrays
dynamic-programming
trees
stacks
queues
-
Updated
Mar 13, 2021 - C++
Compressed numerical arrays that support high-speed random access
-
Updated
Jul 20, 2021 - C++
oj! Algorithms
java
multi-threading
algorithm
algorithms
optimization
linear-algebra
arrays
optimization-algorithms
ojalgo
mathematical-programming
-
Updated
Jul 19, 2021 - Java
A step by step guide to learn JavaScript and programming
javascript
es6
dom
functional-programming
arrow-functions
cookies
localstorage
arrays
es7
es5
js-questions
webdesign
js-quiz
javascript-for-everyone
js-challenges
30daysofjavascript
-
Updated
Jan 26, 2021 - JavaScript
Efficient Haskell Arrays featuring Parallel computation
haskell
stencil
array
parallel-computing
arrays
convolution
multidimensional-arrays
parallel-processing
haskell-arrays
massiv
delayed-arrays
massiv-io
-
Updated
Jul 12, 2021 - Haskell
My implementation of 85+ popular data structures and algorithms and interview questions in Python 3 and C++
python
tree
algorithm
linked-list
datastructures
cpp
graph
strings
matrix
mathematics
bit-manipulation
data-structures
arrays
heap
interview-questions
dynamic-programming
min-heap
max-heap
tries
trie-tree
-
Updated
Oct 5, 2020 - Python
PostgreSQL enhancements for Doctrine. Provides support for advanced data types (json, jssnb, arrays), text search, array operators and jsonb specific functions.
-
Updated
Jun 24, 2021 - PHP
Collection of Abhishek Agrawal's gists solutions for problems on https://www.interviewbit.com
hashing
linked-list
stack
queue
math
maps
backtracking
bit-manipulation
string-manipulation
arrays
cplusplus-14
dynamic-programming
trees
greedy-algorithms
heaps
cplusplus-11
binarysearch
interviewbit
interviewbit-solutions
two-pointers
-
Updated
Oct 31, 2020 - C++
Convert a plain array of nodes (with pointers to parent nodes) to a nested data structure
-
Updated
May 6, 2021 - JavaScript
react
lists
hooks
performance
typescript
validation
state-management
asynchronous
forms
ux
state
form
dx
form-validation
arrays
form-builder
controlled
uncontrolled
form-state
react-hooks
-
Updated
Jul 20, 2021 - TypeScript
Data Structures with Go Language
go
golang
tree
linked-list
stack
queue
algorithms
graph-algorithms
dictionary
collections
binary-search-tree
sorting-algorithms
arrays
educational
interview-questions
binary-trees
searching-algorithms
binary-search
golang-examples
data-stuctures
-
Updated
Feb 12, 2019 - Go
Miniboxing is a program transformation that improves the performance of Scala generics when used with primitive types. It can speed up generic collections by factors between 1.5x and 22x, while maintaining bytecode duplication to a minimum. You can easily add miniboxing to your sbt project:
-
Updated
Apr 11, 2020 - Java
A suite of composable utility components to manipulate collections.
-
Updated
Jan 31, 2017 - JavaScript
7
jonniedie
commented
Aug 13, 2020
-
vcat
of twoComponentVector
s where they share any of the same component names should become a plainArray
- Need
cat
defined - Faster
cat
s, if possible
Provide async/await callbacks for every, find, findIndex, filter, forEach, map, reduce, reduceRight and some methods in Array.
javascript
utility
modules
array
typescript-library
loops
arrays
es6-modules
node-js
node-module
async-await
array-methods
array-manipulations
array-helper
array-processing
array-utils
async-callback
async-ray
-
Updated
Jun 11, 2021 - TypeScript
Base de datos de departamentos, provincias y distritos del Perú (UBIGEO) actualizada al 2019 (El INEI ha actualizado hasta el 2016). SQL, JSON, XML, CSV, Arreglos PHP, YAML.
php
yaml
json
csv
sql
database
xml
array
arrays
regions
peru
provinces
districts
provincias
provincia
departamento
ubigeo
distritos
peruvian
departamentos
-
Updated
Oct 5, 2019 - PHP
chshersh
commented
Sep 21, 2018
Haddock supports that.
A fast javascript maths library designed for simulation and data processing.
-
Updated
May 30, 2021 - JavaScript
Arrays which also have a label for each element for easy scientific machine learning (SciML)
-
Updated
Jul 5, 2021 - Julia
A JavaScript tutorials for beginners, An introduction to JavaScript programming languages building blocks, step-by-step guide to JavaScript
events
vanilla-javascript
javascript-library
loops
arrays
objects
javascript-tutorial
conditions
webdevelopment
learning-javascript
front-end-development
javascript-programming-language
plain-javascript
webprogramming
javascript-programs
javascript-language-fundamentals
javascript-basic-programming
variables-var-let-conts
dom-document-object-model
javascript-typescript-es6
-
Updated
May 25, 2020 - HTML
Array Mutators for 🏁 Final Form
-
Updated
May 24, 2021 - JavaScript
Collection of solution for problems on InterviewBit
hashing
tree
linked-list
stack
queue
graph
maps
strings
backtracking
bit-manipulation
arrays
maths
dynamic-programming
greedy-algorithms
binary-search
heaps
interviewbit
two-pointers
-
Updated
Oct 1, 2020 - C++
Improve this page
Add a description, image, and links to the arrays topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the arrays topic, visit your repo's landing page and select "manage topics."
I feel like
indexOf
's optional second parameter:fromIndex
, is an unsung hero.It has saved me many times from having to
slice
an array before callingindexOf
.Would you consider a PR with an example using
fromIndex
?