-
Notifications
You must be signed in to change notification settings - Fork 0
Comparing changes
Open a pull request
base repository: lavann/java
base: main
head repository: exercism/java
compare: main
- 7 commits
- 12 files changed
- 6 contributors
Commits on Jul 20, 2026
-
Update Map.ofEntries usage (exercism#3151)
Looks like each entry should be wrapped in its own `Map.entry(K,V)` before being passed to `Map.ofEntries()` Change: From `Map<String, Integer> temperatures = Map.ofEntries(Map.entry("Mon", 30, "Tue", 28, "Wed", 32));` To `Map<String, Integer> temperatures2 = Map.ofEntries( Map.entry("Mon", 30), Map.entry("Tue", 28), Map.entry("Wed", 32) );`Configuration menu - View commit details
-
Copy full SHA for 9f5b52d - Browse repository at this point
Copy the full SHA 9f5b52dView commit details
Commits on Aug 1, 2026
-
Bump DavidAnson/markdownlint-cli2-action from 23.2.0 to 24.1.0 (exerc…
…ism#3156) Bumps [DavidAnson/markdownlint-cli2-action](https://github.com/davidanson/markdownlint-cli2-action) from 23.2.0 to 24.1.0. - [Release notes](https://github.com/davidanson/markdownlint-cli2-action/releases) - [Commits](DavidAnson/markdownlint-cli2-action@ded1f94...6bf21b0) --- updated-dependencies: - dependency-name: DavidAnson/markdownlint-cli2-action dependency-version: 24.1.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 814810f - Browse repository at this point
Copy the full SHA 814810fView commit details -
Bump actions/setup-java from 5.4.0 to 5.6.0 (exercism#3155)
Bumps [actions/setup-java](https://github.com/actions/setup-java) from 5.4.0 to 5.6.0. - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](actions/setup-java@1bcf9fb...03ad4de) --- updated-dependencies: - dependency-name: actions/setup-java dependency-version: 5.6.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>
Configuration menu - View commit details
-
Copy full SHA for b17202e - Browse repository at this point
Copy the full SHA b17202eView commit details -
Bump actions/checkout from 7.0.0 to 7.0.1 (exercism#3154)
Bumps [actions/checkout](https://github.com/actions/checkout) from 7.0.0 to 7.0.1. - [Release notes](https://github.com/actions/checkout/releases) - [Commits](actions/checkout@v7...v7.0.1) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for fc789fb - Browse repository at this point
Copy the full SHA fc789fbView commit details
Commits on Aug 2, 2026
-
state-of-tic-tac-toe: add missing test cases for invalid board states (…
…exercism#3153) * state-of-tic-tac-toe: add missing test cases for invalid board states * fix: align test cases with canonical data and clean up comments * chore: sync tests.toml using configlet * fix: enable all tests and add trailing newline * fix: enable all tests and resolve checkstyle newline errors * remove comments * final commit for endlines * Update exercises/practice/state-of-tic-tac-toe/.meta/src/reference/java/StateOfTicTacToe.java Co-authored-by: Jagdish Prajapati <jagadishdrp@gmail.com> * Update exercises/practice/state-of-tic-tac-toe/.meta/src/reference/java/StateOfTicTacToe.java Co-authored-by: Jagdish Prajapati <jagadishdrp@gmail.com> * Update exercises/practice/state-of-tic-tac-toe/src/test/java/StateOfTicTacToeTest.java Co-authored-by: Jagdish Prajapati <jagadishdrp@gmail.com> * rectify code --------- Co-authored-by: Jagdish Prajapati <jagadishdrp@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for d8a4083 - Browse repository at this point
Copy the full SHA d8a4083View commit details
Commits on Aug 21, 2026
-
Configuration menu - View commit details
-
Copy full SHA for 388d96e - Browse repository at this point
Copy the full SHA 388d96eView commit details -
🤖 Auto-sync docs, metadata, and filepaths (exercism#3157)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Jagdish Prajapati <jagadishdrp@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 4a8369e - Browse repository at this point
Copy the full SHA 4a8369eView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff main...main