Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: funkll/JavaScript
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6fe21d2
Choose a base ref
...
head repository: TheAlgorithms/JavaScript
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1d252d7
Choose a head ref
  • 20 commits
  • 36 files changed
  • 14 contributors

Commits on May 16, 2024

  1. Configuration menu
    Copy the full SHA
    6e27235 View commit details
    Browse the repository at this point in the history
  2. Updated Documentation in README.md

    cclauss authored and appgurueu committed May 16, 2024
    Configuration menu
    Copy the full SHA
    6bb02af View commit details
    Browse the repository at this point in the history

Commits on May 17, 2024

  1. Configuration menu
    Copy the full SHA
    cc1e1dc View commit details
    Browse the repository at this point in the history

Commits on May 23, 2024

  1. Configuration menu
    Copy the full SHA
    e2b9754 View commit details
    Browse the repository at this point in the history

Commits on May 25, 2024

  1. Configuration menu
    Copy the full SHA
    3623e42 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1554ba5 View commit details
    Browse the repository at this point in the history

Commits on Jun 11, 2024

  1. Configuration menu
    Copy the full SHA
    79b93d3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0182bca View commit details
    Browse the repository at this point in the history

Commits on Jun 18, 2024

  1. [Solution] Project euler challenge 19 with tests (TheAlgorithms#1659)

    * [Solution] Project euler challenge 19 with tests
    
    * update leap year function
    
    * Remove unnecessary, confusingly placed comments
    
    ---------
    
    Co-authored-by: Lars Müller <34514239+appgurueu@users.noreply.github.com>
    ddaniel27 and appgurueu authored Jun 18, 2024
    Configuration menu
    Copy the full SHA
    5844242 View commit details
    Browse the repository at this point in the history

Commits on Jun 23, 2024

  1. [Compressor] RLE Compressor implementation (TheAlgorithms#1671)

    * [Solution] Project euler challenge 19 with tests
    
    * update leap year function
    
    * Remove unnecessary, confusingly placed comments
    
    * [COMPRESSOR] RLE
    
    * [COMPRESSOR] RLE style fixed
    
    ---------
    
    Co-authored-by: Lars Müller <34514239+appgurueu@users.noreply.github.com>
    ddaniel27 and appgurueu authored Jun 23, 2024
    Configuration menu
    Copy the full SHA
    5f8d4d4 View commit details
    Browse the repository at this point in the history
  2. chore(deps-dev): bump braces from 3.0.2 to 3.0.3 (TheAlgorithms#1670)

    Bumps [braces](https://github.com/micromatch/braces) from 3.0.2 to 3.0.3.
    - [Changelog](https://github.com/micromatch/braces/blob/master/CHANGELOG.md)
    - [Commits](micromatch/braces@3.0.2...3.0.3)
    
    ---
    updated-dependencies:
    - dependency-name: braces
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jun 23, 2024
    Configuration menu
    Copy the full SHA
    8ceaa25 View commit details
    Browse the repository at this point in the history
  3. chore: update codecov-action to v4 (TheAlgorithms#1605)

    The token has been added to the repository secrets.
    vil02 authored Jun 23, 2024
    Configuration menu
    Copy the full SHA
    9010481 View commit details
    Browse the repository at this point in the history

Commits on Oct 4, 2024

  1. chore(deps): bump rollup from 4.9.6 to 4.22.4 (TheAlgorithms#1690)

    Bumps [rollup](https://github.com/rollup/rollup) from 4.9.6 to 4.22.4.
    - [Release notes](https://github.com/rollup/rollup/releases)
    - [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
    - [Commits](rollup/rollup@v4.9.6...v4.22.4)
    
    ---
    updated-dependencies:
    - dependency-name: rollup
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Oct 4, 2024
    Configuration menu
    Copy the full SHA
    5b17ea1 View commit details
    Browse the repository at this point in the history

Commits on Oct 5, 2024

  1. chore(deps): bump vite from 5.0.12 to 5.4.8 (TheAlgorithms#1711)

    Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 5.0.12 to 5.4.8.
    - [Release notes](https://github.com/vitejs/vite/releases)
    - [Changelog](https://github.com/vitejs/vite/blob/v5.4.8/packages/vite/CHANGELOG.md)
    - [Commits](https://github.com/vitejs/vite/commits/v5.4.8/packages/vite)
    
    ---
    updated-dependencies:
    - dependency-name: vite
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Oct 5, 2024
    Configuration menu
    Copy the full SHA
    18da83a View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2024

  1. Configuration menu
    Copy the full SHA
    ff314a2 View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2024

  1. docs: fixed misleading comment about the array method (forEach instea…

    …d of reduce) used in AverageMean.js (TheAlgorithms#1727)
    
    * docs: fixed misleading comment about the array method (forEach instead of reduce) used in AverageMean.js
    
    * fix: optimized AverageMean.js by removing redundant comments and unnecessary operations.
    
    * Update Maths/AverageMean.js
    
    Co-authored-by: Lars Müller <34514239+appgurueu@users.noreply.github.com>
    
    ---------
    
    Co-authored-by: Hridyanshu7 <himank7794@gmail.com>
    Co-authored-by: Lars Müller <34514239+appgurueu@users.noreply.github.com>
    3 people authored Oct 16, 2024
    Configuration menu
    Copy the full SHA
    55ff0ad View commit details
    Browse the repository at this point in the history

Commits on Nov 16, 2024

  1. Add tests for Project euler problem 14 solution (TheAlgorithms#1713)

    * 📦 NEW: Added solution for ProjectEuler-007
    
    * 🐛 FIX: Spelling mistake fixes
    
    * 👌 IMPROVE: changed variable name from `inc` to `candidateValue` and thrown error in case of invalid input
    
    * 👌 IMPROVE: Modified the code
    
    * 👌 IMPROVE: Added test case for ProjectEuler Problem001
    
    * 👌 IMPROVE: Added test cases for Project Euler Problem 4
    
    * 👌 IMPROVE: auto prettier fixes
    
    * 📦 NEW: Testcases for Project Euler Problem 14
    
    * Updated Documentation in README.md
    
    * 👌 IMPROVE: code improvements
    
    ---------
    
    Co-authored-by: Omkarnath Parida <omkarnath.parida@yocket.in>
    Co-authored-by: pomkarnath98 <pomkarnath98@users.noreply.github.com>
    3 people authored Nov 16, 2024
    Configuration menu
    Copy the full SHA
    d8588f9 View commit details
    Browse the repository at this point in the history

Commits on Dec 20, 2024

  1. test: added for Linear Search Algorithm (TheAlgorithms#1753)

    * test: added for Linear Search Algorithm
    
    * Update Search/LinearSearch.js
    
    Co-authored-by: Lars Müller <34514239+appgurueu@users.noreply.github.com>
    
    ---------
    
    Co-authored-by: Hridyanshu7 <himank7794@gmail.com>
    Co-authored-by: Lars Müller <34514239+appgurueu@users.noreply.github.com>
    3 people authored Dec 20, 2024
    Configuration menu
    Copy the full SHA
    85a55da View commit details
    Browse the repository at this point in the history

Commits on Jan 12, 2025

  1. Resolve duplicate entries for sieve of eratosthenes (TheAlgorithms#1770)

    * remove intarr test
    
    * Remove main file oops
    
    * FIXES: TheAlgorithms#1666 , remove references to SieveOfEratosthenesIntArray
    
    * Finally fix the requirements, passes vitest
    
    * Updated Documentation in README.md
    
    * FIXES: TheAlgorithms#1666 and conform to alg comment standards
    
    ---------
    
    Co-authored-by: SpiderMath <SpiderMath@users.noreply.github.com>
    SpiderMath and SpiderMath authored Jan 12, 2025
    Configuration menu
    Copy the full SHA
    a62a46e View commit details
    Browse the repository at this point in the history

Commits on Jan 15, 2025

  1. Configuration menu
    Copy the full SHA
    1d252d7 View commit details
    Browse the repository at this point in the history
Loading