A collection of algorithm excercises
JavaScript
Switch branches/tags
Nothing to show
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
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