70 results for “topic:freecodecamp-algorithms”
My solutions to the JavaScript Algorithms on freeCodeCamp.
Code from exercises and projects submitted in freeCodeCamp
FreeCodeCamp.org solutions
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
My solutions for freeCodeCamp tasks. Use it as a reference and don't cheat yourself.
11 of the Scientific Computing with Python freeCodeCamp projects.
✨ A collection of algorithms written in JavaScript
A repository containing all the FreeCodeCamp Curriculum's projects made by myself.
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.
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.
FreeCodeCamp JavaScript Algorithms and Data Structures
Convert a string to spinal case. Spinal case is all-lowercase-words-joined-by-dashes.
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.
Return true if the passed string looks like a valid US phone number.
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.
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.
Various freeCodeCamp Solutions
Check if the predicate (second argument) is truthy on all elements of a collection (first argument).
No description provided.
Convert the given number into a roman numeral.
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
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.
Flatten a nested array. You must account for varying levels of nesting.
Some daily use algorithms cheat sheet.
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.