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: wizardjedi/TheAlgorithms-Java
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: TheAlgorithms/Java
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 6 commits
  • 21 files changed
  • 8 contributors

Commits on Jan 31, 2026

  1. chore(deps): bump com.puppycrawl.tools:checkstyle from 13.0.0 to 13.1…

    ….0 (TheAlgorithms#7251)
    
    Bumps [com.puppycrawl.tools:checkstyle](https://github.com/checkstyle/checkstyle) from 13.0.0 to 13.1.0.
    - [Release notes](https://github.com/checkstyle/checkstyle/releases)
    - [Commits](checkstyle/checkstyle@checkstyle-13.0.0...checkstyle-13.1.0)
    
    ---
    updated-dependencies:
    - dependency-name: com.puppycrawl.tools:checkstyle
      dependency-version: 13.1.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jan 31, 2026
    Configuration menu
    Copy the full SHA
    f3fd9ca View commit details
    Browse the repository at this point in the history

Commits on Feb 1, 2026

  1. Refactor KMP and RabinKarp: Improve Reusability and Test Coverage (Th…

    …eAlgorithms#7250)
    
    * first commit
    
    * Running KMPTest and RabinKarpTest with fixed formatting
    
    * now build failed error resolved
    
    * now build failed error resolved 2
    
    ---------
    
    Co-authored-by: Divyansh Saxena <divyanshsaxena@gmail.com>
    Co-authored-by: Deniz Altunkapan <deniz.altunkapan@outlook.com>
    3 people authored Feb 1, 2026
    Configuration menu
    Copy the full SHA
    dfaa495 View commit details
    Browse the repository at this point in the history
  2. add Subarray Sum Equals K using prefix sum (TheAlgorithms#7252)

    Co-authored-by: Deniz Altunkapan <deniz.altunkapan@outlook.com>
    ruturajjadhav07 and DenizAltunkapan authored Feb 1, 2026
    Configuration menu
    Copy the full SHA
    3e36833 View commit details
    Browse the repository at this point in the history

Commits on Feb 3, 2026

  1. chore(deps-dev): bump org.apache.maven.plugins:maven-compiler-plugin …

    …from 3.14.1 to 3.15.0 (TheAlgorithms#7254)
    
    chore(deps-dev): bump org.apache.maven.plugins:maven-compiler-plugin
    
    Bumps [org.apache.maven.plugins:maven-compiler-plugin](https://github.com/apache/maven-compiler-plugin) from 3.14.1 to 3.15.0.
    - [Release notes](https://github.com/apache/maven-compiler-plugin/releases)
    - [Commits](apache/maven-compiler-plugin@maven-compiler-plugin-3.14.1...maven-compiler-plugin-3.15.0)
    
    ---
    updated-dependencies:
    - dependency-name: org.apache.maven.plugins:maven-compiler-plugin
      dependency-version: 3.15.0
      dependency-type: direct:development
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Feb 3, 2026
    Configuration menu
    Copy the full SHA
    c6703d3 View commit details
    Browse the repository at this point in the history
  2. refactor: clean up duplicate algorithm implementations to reduce main…

    …tenance overhead (TheAlgorithms#7256)
    
    refactor: remove duplicate algorithm implementations
    
    Removed the following duplicate implementations:
    - searches/PerfectBinarySearch.java (duplicate of IterativeBinarySearch)
    - searches/SortOrderAgnosticBinarySearch.java (duplicate of OrderAgnosticBinarySearch)
    - strings/LongestPalindromicSubstring.java (duplicate of dynamicprogramming version)
    - strings/ValidParentheses.java (duplicate of stacks version)
    - others/cn/HammingDistance.java (duplicate - strings version handles text)
    - others/NewManShanksPrimeTest.java (orphan test in wrong package)
    
    Updated DIRECTORY.md to reflect the changes.
    
    Fixes TheAlgorithms#7253
    
    Co-authored-by: Ahmed Allam <60698204+AllamF5J@users.noreply.github.com>
    GziXnine and GziXnine authored Feb 3, 2026
    Configuration menu
    Copy the full SHA
    8e30bcb View commit details
    Browse the repository at this point in the history

Commits on Feb 4, 2026

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