{"id":16183221,"url":"https://github.com/envyn/freecodecamp","last_synced_at":"2025-04-07T12:42:02.403Z","repository":{"id":81848496,"uuid":"192145160","full_name":"envyN/freecodecamp","owner":"envyN","description":"Solutions to problems on freecodecamp.org","archived":false,"fork":false,"pushed_at":"2019-08-12T05:15:45.000Z","size":36,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-13T15:25:36.358Z","etag":null,"topics":["es6","freecodecamp","freecodecamp-algorithms","javascript"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/envyN.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-06-16T03:15:22.000Z","updated_at":"2020-02-11T12:29:31.000Z","dependencies_parsed_at":null,"dependency_job_id":"8b12f106-5bec-4999-97d9-9b30803c96ec","html_url":"https://github.com/envyN/freecodecamp","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/envyN%2Ffreecodecamp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/envyN%2Ffreecodecamp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/envyN%2Ffreecodecamp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/envyN%2Ffreecodecamp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/envyN","download_url":"https://codeload.github.com/envyN/freecodecamp/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247655149,"owners_count":20974133,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["es6","freecodecamp","freecodecamp-algorithms","javascript"],"created_at":"2024-10-10T06:45:17.243Z","updated_at":"2025-04-07T12:42:02.347Z","avatar_url":"https://github.com/envyN.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# freecodecamp\nSolutions to problems on freecodecamp.org\n\n### Algorithms\n\n* [Find the symmetric Difference](https://learn.freecodecamp.org/coding-interview-prep/algorithms/find-the-symmetric-difference) - [Solution](https://github.com/envyN/freecodecamp/blob/master/src/Algorithms/FindTheSymmetricDifference.js)\n* [Inventory Update](https://learn.freecodecamp.org/coding-interview-prep/algorithms/inventory-update) - [Solution](https://github.com/envyN/freecodecamp/blob/master/src/Algorithms/InventoryUpdate.js)\n* [No Repeats Please](https://learn.freecodecamp.org/coding-interview-prep/algorithms/no-repeats-please) - [Solution](https://github.com/envyN/freecodecamp/blob/master/src/Algorithms/NoRepeatsPlease.js) (Without [Heap's Algorithm](https://en.wikipedia.org/wiki/Heap%27s_algorithm))\n* [Pairwise](https://learn.freecodecamp.org/coding-interview-prep/algorithms/pairwise) - [Solution](https://github.com/envyN/freecodecamp/blob/master/src/Algorithms/Pairwise.js)\n* [Bubble Sort](https://learn.freecodecamp.org/coding-interview-prep/algorithms/implement-bubble-sort) - [Solution](https://github.com/envyN/freecodecamp/blob/master/src/Algorithms/BubbleSort.js)\n* [Selection Sort](https://learn.freecodecamp.org/coding-interview-prep/algorithms/implement-selection-sort) - [Solution](https://github.com/envyN/freecodecamp/blob/master/src/Algorithms/SelectionSort.js)\n* [Insertion Sort](https://learn.freecodecamp.org/coding-interview-prep/algorithms/implement-insertion-sort) - [Solution](https://github.com/envyN/freecodecamp/blob/master/src/Algorithms/InsertionSort.js)\n* [Quick Sort](https://learn.freecodecamp.org/coding-interview-prep/algorithms/implement-quick-sort) - [Solution](https://github.com/envyN/freecodecamp/blob/master/src/Algorithms/QuickSort.js) (Right Pivot) ([Ref-video](https://www.youtube.com/watch?v=COk73cpQbFQ))\n    * [Solution](https://github.com/envyN/freecodecamp/blob/master/src/Algorithms/QuickSort_alternateLoop.js) (Alternate Loop)\n    * [Solution](https://github.com/envyN/freecodecamp/blob/master/src/Algorithms/QuickSort_leftPivot.js) (Left Pivot)\n    * [Solution](https://github.com/envyN/freecodecamp/blob/master/src/Algorithms/QuickSort_randomPivot.js) (Random Pivot)\n    * [Solution](https://github.com/envyN/freecodecamp/blob/master/src/Algorithms/QuickSort_medianOfThreePivot.js) (Median of Three Pivot)\n* [Merge Sort](https://learn.freecodecamp.org/coding-interview-prep/algorithms/implement-merge-sort) - [Solution](https://github.com/envyN/freecodecamp/blob/master/src/Algorithms/MergeSort.js)\n\n### [Project Euler](https://projecteuler.net)\n\n1. [Multiples of 3 and 5](https://learn.freecodecamp.org/coding-interview-prep/project-euler/problem-1-multiples-of-3-and-5/) - [Solution](https://github.com/envyN/freecodecamp/blob/master/src/ProjectEuler/MultiplesOf3and5.js)\n1. [Even Fibonacci Numbers](https://learn.freecodecamp.org/coding-interview-prep/project-euler/problem-2-even-fibonacci-numbers) - [Solution](https://github.com/envyN/freecodecamp/blob/master/src/ProjectEuler/EvenFibonacciNumbers.js)\n1. [Largest Prime Factor](https://learn.freecodecamp.org/coding-interview-prep/project-euler/problem-3-largest-prime-factor) - [Solution](https://github.com/envyN/freecodecamp/blob/master/src/ProjectEuler/LargestPrimeFactor.js)\n1. [Largest Palindrome Product](https://learn.freecodecamp.org/coding-interview-prep/project-euler/problem-4-largest-palindrome-product) - [Solution](https://github.com/envyN/freecodecamp/blob/master/src/ProjectEuler/LargestPalindromeProduct.js)\n1. [Smallest Multiple](https://learn.freecodecamp.org/coding-interview-prep/project-euler/problem-5-smallest-multiple) - [Solution](https://github.com/envyN/freecodecamp/blob/master/src/ProjectEuler/SmallestMultiple.js)\n1. [Sum Square Difference](https://learn.freecodecamp.org/coding-interview-prep/project-euler/problem-6-sum-square-difference/) - [Solution](https://github.com/envyN/freecodecamp/blob/master/src/ProjectEuler/SumSquareDifference.js)\n1. [10001st prime](https://learn.freecodecamp.org/coding-interview-prep/project-euler/problem-7-10001st-prime) - [Solution](https://github.com/envyN/freecodecamp/blob/master/src/ProjectEuler/nthPrime.js)\n1. [Largest product in a series](https://learn.freecodecamp.org/coding-interview-prep/project-euler/problem-8-largest-product-in-a-series/) - [Solution](https://github.com/envyN/freecodecamp/blob/master/src/ProjectEuler/LargestProductInSeries.js)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fenvyn%2Ffreecodecamp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fenvyn%2Ffreecodecamp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fenvyn%2Ffreecodecamp/lists"}