array-manipulation
There are 36 repositories under array-manipulation topic.
cocur/vale
Vale helps you working with complex data structures. Easily get, set, unset and check the existence of values in deeply nested arrays and objects.
jajaperson/iterable-utilities
A bunch of utilities for working with iterables, many inspired by the native array methods.
4e1e0603/02
Fortran: The introductory course, examples, and exercises. Originally written for personal needs, but may be useful for other people.
danieldotwav/Product-of-Array-Except-Self
A short Java program that provides an efficient solution to the "Product of Array Except Self" problem, using no division and handling special cases like zeros and single-element arrays
FranBar1966/FlatPHP
Simple, fast and powerful PHP utility functions to flatten/unflatten multidimensional/JSON arrays into a one-dimensional array, preserving key names and joining them with customizable separators.
synacktraa/nonstd.h
my implementation of predefined functions of C and some useful data manipulatiing functions.
zakonweb/array-codes-AS
Program code using 1D and 2D arrays.
danieldotwav/Difference-of-Arrays
A C++ program that finds and displays the unique elements between two integer arrays.
danieldotwav/Move-Zeroes
A short C++ program that reorganizes an integer array by moving all zeros to the end while preserving the order of non-zero elements, demonstrating an in-place algorithm with a two-pointer technique.
kevinhermawan/enhanced-array
A set of useful utilities that are not provided in the standard JavaScript Array
AgusLacomi/Some_Algorithms
Some of the LeetCode exercises I do and will perform
Aro1914/Sorting-an-Array-of-Objects
This is a helper function that sorts an array of objects.
Aro1914/Sorting-an-Array-of-Objects-For-Server-Side
This is a helper function that sorts an array of objects.
gabrielhochmann/C_Code_Library
A collection of C code examples, including university exercises and self-directed studies. Features recursive functions, data structures, and algorithms, with implementations for mathematical calculations, array manipulations, and string operations.
jamessofios/j-image-viewer
Image viewer written in Java using the Swing API
mcquerol/java-projects
Various Java projects showcasing OOP, data structures, and GUI development.
OSSpk/Mapping-3D-Array-to-1D-Array
🌌 Demonstrating the concept of representing/flattening a 3D array as a 1D array by solving a real life problem
Software-Research-Lab/dropsuit-clnarr
The clnarr function is a JavaScript and Node.js function that is part of the DropSuit NLP library. It is designed to clean and format arrays by removing duplicates, empty elements, and extra punctuation marks. It's open-source and available under the Apache License 2.0.
KPlanisphere/array-pointer-manipulation
Practica 1 - Sistemas Operativos
MalikShujaatAli/CppEssentials
Master essential C++ concepts effortlessly with CppEssentials. Clear programs, organized categories—your pathway to proficiency.
Reterics/array-to-relational-converter
Create force data structure for force graphs of sankeys from array of objects.
RNAsound/bearsalmon
bearsalmon - a PureData Extern for shuffling, chopping, and slicing your sample arrays
angieloux/javascript-workbook
An assessment piece while undertaking my studies at Coder Academy, specifically delving into JavaScript concepts, components and problem solving.
esterbvila/lab-javascript-functions-and-arrays
A review exercise to apply array iteration and array manipulation techniques. Backend Bootcamp by Singulars.
ganeshkavhar/Array-in-python-by-ganesh-kavhar
ganesh kavhar python tutorial with examples..
imelgrat/arrayfind-example
Array.find() example
jatiinyadav/arr-toolkit
A TS compatible utility library for array manipulation.
KPlanisphere/One-Dimensional-Arrays-In-C
Problemario 6 - Programacion 1
KPlanisphere/Two-Dimensional-Arrays-In-C
Problemario 9 - Programacion 1
madhurimarawat/Data-Structure-And-Algorithms
This repository contains programs in the C, C++ and Python programming language related to Data Structures.
mbar0075/Programming-Principles-in-C
Deliverables relating to the Programming Principles in C University Unit
OSSpk/Bubble-Sort-Using-Pointer-Arithmetic
☘️ An implementation of Bubble Sort where Pointers are used to traverse and process the array
rodikh/js-sheets
A javascript array manipulation library that mimics spreadsheet and database functionality in variable
s-mirza/Election-Statistics-Manager
This program manages election data by importing candidate names and vote counts from a file. It provides commands for candidate vote lookup, determining the election winner, and displaying election statistics (including total and average votes, percentages). It helps track and analyze election results efficiently.
writetome51/array-get-and-remove-all-before
2 functions: one removes and returns all array items before the first instance of a value, and the other removes and returns all array items before the last instance of a value
writetome51/array-get-and-remove-head-tail
These functions remove and return items from the beginning and end of the array, respectively