Skip to content
A collection of algorithm excercises
JavaScript
Branch: master
Clone or download

Latest commit

Fetching latest commit…
Cannot retrieve the latest commit at this time.

Files

Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
ArraySumValue.js
README.md
RemoveDupes.js
RemoveDupesNewArray.js
SumOfTwoNumbers.js

README.md

JavaScript-Algorithms

A collection of algorithm excercises

ArraySumValue.js: checks if two numbers in a given array are the sum of a given value

RemoveDupes.js: removes duplicate items in an array without making a new array

SumOfTwoNumbers.js: simple script for finding if any two numbers in an array add up to a chosen value (using javascript). No concern was given for O(n)

RemoveDupesNewArray.js: removes duplicate items in an array by making a new array

You can’t perform that action at this time.