Coder Social home page Coder Social logo

one-to-many-array-zip's Introduction

A custom array-combining/zipping function.

Given two sorted arrays whose elements have a one-to-many relationship, and a function that returns true when given two matching elements, efficiently return a new array with the matching elements combined.

const parents = [
	{ name: 'cool dad', coolness: 3 },
	{ name: 'cool cat', coolness: 7 }
]

const children = [
	{ name: 'bobby', coolness: 1 },
	{ name: 'billy', coolness: 3 },
	{ name: 'bubba', coolness: 5 },
	{ name: 'benji', coolness: 6 }
]

const output = oneToManyZip(parents, children, (parent, child) => parent.coolness >= child.coolness)

const expectedOutput =  [
	{
		one: { name: 'cool dad', coolness: 3 },
		many: [
			{ name: 'bobby', coolness: 1 },
			{ name: 'billy', coolness: 3 }
		]
	}, {
		one: { name: 'cool cat', coolness: 7 },
		many: [
			{ name: 'bubba', coolness: 5 },
			{ name: 'benji', coolness: 6 }
		]
	}
]

output // => expectedOutput

oneToManyZip(parentArray, childrenArray, compareFn)

Returns a new array with parentArray.length elements.

Iterates over all the elements in parentArray, and calls compareFn(parentArray[i], childrenArray[j]).

compareFn should return true if the child element belongs to the parent element.

The returned array will have an object for each element in parentArray. The object will have two properties:

  • one: the element from parentArray
  • many: an array of matching elements from childrenArray

Throws an error if there are any childrenArray elements left after iterating over all the elements in parentArray.

Don't forget, both arrays must be sorted before passing them in!

License

WTFPL

one-to-many-array-zip's People

Contributors

tehshrike avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.