freecodecamp-algorithms
There are 71 repositories under freecodecamp-algorithms topic.
autumnchris/freecodecamp-algorithms
My solutions to the JavaScript Algorithms on freeCodeCamp.
formidablae/freeCodeCamp
Code from exercises and projects submitted in freeCodeCamp
geekyorion/freecodecamp
FreeCodeCamp.org solutions
Mohmmad-amir/FreeCodeCamp-solutions
This is free code camp solutions project for the free code camp beginners.
BorislavChernev/FreeCodeCamp-JavaScript-Algorithms-and-Data-Structures
A repository that stores my exercises and projects from the course listed above.
aravindvnair99/freeCodeCamp-Solutions
My solutions for freeCodeCamp tasks. Use it as a reference and don't cheat yourself.
koalamango/js-algorithms
✨ A collection of algorithms written in JavaScript
mindxDoc/fcc-algorithm-solving
Freecodecamp algorithm solving from basic to advanced
obayomi96/Algorithms
JS & Python algorithms solved by me
andresgarbarz/FreeCodeCamp
A repository containing all the FreeCodeCamp Curriculum's projects made by myself.
D-Antonelli/FCC-Algorithms-And-Data-Structures-Projcts
FreeCodeCamp JavaScript Algorithms and Data Structures
envyN/freecodecamp
Solutions to problems on freecodecamp.org
Nicholas-khl/Scientific_Computing_with_Python
Freecodecamp Scientific Computing with Python (Beta)
Nobledsmarts/Arguments-Optional
Create a function that sums two arguments together. If only one argument is provided, then return a function that expects one argument and returns the sum.
Nobledsmarts/Binary-Agents
Return an English translated sentence of the passed binary string. The binary string will be space separated.
Nobledsmarts/Caesars-Cipher
Write a function which takes a ROT13 encoded string as input and returns a decoded string.
Nobledsmarts/chunky-monkey
Write a function that splits an array (first argument) into groups the length of size (second argument) and returns them as a two-dimensional array.
Nobledsmarts/Convert-HTML-Entities
Convert the characters &, <, >, " (double quote), and ' (apostrophe), in a string to their corresponding HTML entities.
Nobledsmarts/diff-two-arrays
Compare two arrays and return a new array with any items only found in one of the two given arrays, but not both. In other words, return the symmetric difference of the two arrays. Note: You can return the array with its elements in any order.
Nobledsmarts/DNA-pairing
Pairs of DNA strands consist of nucleobase pairs. Base pairs are represented by the characters AT and CG, which form building blocks of the DNA double helix.
Nobledsmarts/Drop-it
Given the array arr, iterate through and remove each element starting from the first element (the 0 index) until the function func returns true when the iterated element is passed through it. Then return the rest of the array once the condition is satisfied, otherwise, arr should be returned as an empty array
Nobledsmarts/Everything-Be-True
Check if the predicate (second argument) is truthy on all elements of a collection (first argument).
Nobledsmarts/Map-the-Debris
According to Kepler's Third Law, the orbital period T of two point masses orbiting each other in a circular or elliptic orbit is:
Nobledsmarts/missing-letters
Find the missing letter in the passed letter range and return it. If all letters are present in the range, return undefined.
Nobledsmarts/Palindrome-Checker
Return true if the given string is a palindrome. Otherwise, return false. A palindrome is a word or sentence that's spelled the same way both forward and backward, ignoring punctuation, case, and spacing.
Nobledsmarts/pig-latin
Pig Latin is a way of altering English Words. The rules are as follows: - If a word begins with a consonant, take the first consonant or consonant cluster, move it to the end of the word, and add ay to it. - If a word begins with a vowel, just add way at the end.
Nobledsmarts/Roman-Numeral-Converter
Convert the given number into a roman numeral.
Nobledsmarts/seek-and-destroy
You will be provided with an initial array (the first argument in the destroyer function), followed by one or more arguments. Remove all elements from the initial array that are of the same value as these arguments. Note: You have to use the arguments object.
Nobledsmarts/sorted-union
Write a function that takes two or more arrays and returns a new array of unique values in the order of the original provided arrays. In other words, all values present from all arrays should be included in their original order, but with no duplicates in the final array.
Nobledsmarts/spinal-tap-case
Convert a string to spinal case. Spinal case is all-lowercase-words-joined-by-dashes.
Nobledsmarts/Steamroller
Flatten a nested array. You must account for varying levels of nesting.
Nobledsmarts/Sum-All-Odd-Fibonacci-Numbers
Given a positive integer num, return the sum of all odd Fibonacci numbers that are less than or equal to num.
Nobledsmarts/Telephone-Number-Validator
Return true if the passed string looks like a valid US phone number.
Nobledsmarts/wherefore-art-thou
Make a function that looks through an array of objects (first argument) and returns an array of all objects that have matching name and value pairs (second argument). Each name and value pair of the source object has to be present in the object from the collection if it is to be included in the returned array.
shahidcodes/freecodecamp-ds-and-algorithms.js
Basic algorithms implementation in javascript. Repo follow the freeCodeCamp algorithm video for reference
swapnilpandey23/Algorithms
Some daily use algorithms cheat sheet.