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