My solutions to the JavaScript Algorithms on freeCodeCamp.
-
Updated
Feb 16, 2025 - JavaScript
My solutions to the JavaScript Algorithms on freeCodeCamp.
This is free code camp solutions project for the free code camp beginners.
A repository that stores my exercises and projects from the course listed above.
Freecodecamp algorithm solving from basic to advanced
JS & Python algorithms solved by me
✨ A collection of algorithms written in JavaScript
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.
A repository containing all the FreeCodeCamp Curriculum's projects made by myself.
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.
Return true if the passed string looks like a valid US phone number.
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.
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.
Convert a string to spinal case. Spinal case is all-lowercase-words-joined-by-dashes.
Return an English translated sentence of the passed binary string. The binary string will be space separated.
Given a positive integer num, return the sum of all odd Fibonacci numbers that are less than or equal to num.
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.
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.
Find the missing letter in the passed letter range and return it. If all letters are present in the range, return undefined.
Basic algorithms implementation in javascript. Repo follow the freeCodeCamp algorithm video for reference
Add a description, image, and links to the freecodecamp-algorithms topic page so that developers can more easily learn about it.
To associate your repository with the freecodecamp-algorithms topic, visit your repo's landing page and select "manage topics."