freecodecamp-algorithms

There are 70 repositories under freecodecamp-algorithms topic.

  • autumnchris/freecodecamp-algorithms

    My solutions to the JavaScript Algorithms on freeCodeCamp.

    Language:JavaScript16202
  • formidablae/freeCodeCamp

    Code from exercises and projects submitted in freeCodeCamp

    Language:HTML152985
  • geekyorion/freecodecamp

    FreeCodeCamp.org solutions

    Language:HTML12208
  • BorislavChernev/FreeCodeCamp-JavaScript-Algorithms-and-Data-Structures

    A repository that stores my exercises and projects from the course listed above.

    Language:JavaScript5100
  • Mohmmad-amir/FreeCodeCamp-solutions

    This is free code camp solutions project for the free code camp beginners.

    Language:JavaScript5100
  • mindxDoc/fcc-algorithm-solving

    Freecodecamp algorithm solving from basic to advanced

    Language:JavaScript3222
  • aravindvnair99/freeCodeCamp-Solutions

    My solutions for freeCodeCamp tasks. Use it as a reference and don't cheat yourself.

    Language:HTML230
  • koalamango/js-algorithms

    ✨ A collection of algorithms written in JavaScript

    Language:JavaScript2200
  • obayomi96/Algorithms

    JS & Python algorithms solved by me

    Language:JavaScript2000
  • andresgarbarz/FreeCodeCamp

    A repository containing all the FreeCodeCamp Curriculum's projects made by myself.

    Language:JavaScript1101
  • D-Antonelli/FCC-Algorithms-And-Data-Structures-Projcts

    FreeCodeCamp JavaScript Algorithms and Data Structures

  • envyN/freecodecamp

    Solutions to problems on freecodecamp.org

    Language:JavaScript1100
  • 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.

    Language:JavaScript120
  • Nobledsmarts/Binary-Agents

    Return an English translated sentence of the passed binary string. The binary string will be space separated.

    Language:JavaScript120
  • Nobledsmarts/Caesars-Cipher

    Write a function which takes a ROT13 encoded string as input and returns a decoded string.

    Language:JavaScript120
  • 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.

    Language:JavaScript120
  • Nobledsmarts/Convert-HTML-Entities

    Convert the characters &, <, >, " (double quote), and ' (apostrophe), in a string to their corresponding HTML entities.

    Language:JavaScript120
  • 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.

    Language:JavaScript120
  • 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.

    Language:JavaScript120
  • 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

    Language:JavaScript120
  • Nobledsmarts/Everything-Be-True

    Check if the predicate (second argument) is truthy on all elements of a collection (first argument).

    Language:JavaScript120
  • 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:

    Language:JavaScript120
  • 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.

    Language:JavaScript120
  • 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.

    Language:JavaScript120
  • 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.

    Language:JavaScript120
  • Nobledsmarts/Roman-Numeral-Converter

    Convert the given number into a roman numeral.

    Language:JavaScript120
  • 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.

    Language:JavaScript120
  • 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.

    Language:JavaScript120
  • Nobledsmarts/spinal-tap-case

    Convert a string to spinal case. Spinal case is all-lowercase-words-joined-by-dashes.

    Language:JavaScript120
  • Nobledsmarts/Steamroller

    Flatten a nested array. You must account for varying levels of nesting.

    Language:JavaScript120
  • 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.

    Language:JavaScript120
  • Nobledsmarts/Telephone-Number-Validator

    Return true if the passed string looks like a valid US phone number.

    Language:JavaScript120
  • 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.

    Language:JavaScript120
  • shahidcodes/freecodecamp-ds-and-algorithms.js

    Basic algorithms implementation in javascript. Repo follow the freeCodeCamp algorithm video for reference

    Language:JavaScript110
  • swapnilpandey23/Algorithms

    Some daily use algorithms cheat sheet.

    Language:JavaScript1100
  • TexasBullet26/freeCodeCamp-solutions

    Various freeCodeCamp Solutions

    Language:HTML1100